Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Version Update: 0.4.0
  • Loading branch information
SourMesen committed Apr 25, 2020
1 parent 2abf39c commit dd0287088c53e1e96e5818ed81160f6a958646a8
Showing with 5 additions and 5 deletions.
  1. +2 −2 Core/EmuSettings.cpp
  2. +1 −1 UI/Config/Configuration.cs
  3. +2 −2 UI/Properties/AssemblyInfo.cs
@@ -21,9 +21,9 @@ EmuSettings::EmuSettings(Console* console)

uint32_t EmuSettings::GetVersion()
{
//Version 0.3.0
//Version 0.4.0
uint16_t major = 0;
uint8_t minor = 3;
uint8_t minor = 4;
uint8_t revision = 0;
return (major << 16) | (minor << 8) | revision;
}
@@ -14,7 +14,7 @@ public class Configuration
{
private bool _needToSave = false;

public string Version = "0.3.0";
public string Version = "0.4.0";
public VideoConfig Video;
public AudioConfig Audio;
public InputConfig Input;
@@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.3.*")]
[assembly: AssemblyFileVersion("0.3.0.0")]
[assembly: AssemblyVersion("0.4.*")]
[assembly: AssemblyFileVersion("0.4.0.0")]

0 comments on commit dd02870

Please sign in to comment.