Version Update: 0.4.0
This commit is contained in:
parent
2abf39cda5
commit
dd0287088c
3 changed files with 5 additions and 5 deletions
|
@ -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 @@ namespace Mesen.GUI.Config
|
|||
{
|
||||
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 @@ using System.Runtime.InteropServices;
|
|||
// 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")]
|
||||
|
|
Loading…
Add table
Reference in a new issue