Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Commit

Permalink
Version Update: 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SourMesen committed Apr 25, 2020
1 parent 2abf39c commit dd02870
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Core/EmuSettings.cpp
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion UI/Config/Configuration.cs
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions UI/Properties/AssemblyInfo.cs
Expand Up @@ -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.