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.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
SourMesen committed Aug 5, 2018
1 parent ce123bd commit c6f7afd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Core/EmulationSettings.cpp
Expand Up @@ -3,10 +3,10 @@
#include "Console.h"
#include "RewindManager.h"

//Version 0.9.5
//Version 0.9.6
uint16_t EmulationSettings::_versionMajor = 0;
uint8_t EmulationSettings::_versionMinor = 9;
uint8_t EmulationSettings::_versionRevision = 5;
uint8_t EmulationSettings::_versionRevision = 6;

SimpleLock EmulationSettings::_lock;
SimpleLock EmulationSettings::_shortcutLock;
Expand Down
2 changes: 1 addition & 1 deletion GUI.NET/Config/Configuration.cs
Expand Up @@ -15,7 +15,7 @@ public class Configuration
private const int MaxRecentFiles = 10;
private bool _needToSave = false;

public string MesenVersion = "0.9.5";
public string MesenVersion = "0.9.6";
public PreferenceInfo PreferenceInfo;
public AudioInfo AudioInfo;
public VideoInfo VideoInfo;
Expand Down
2 changes: 1 addition & 1 deletion GUI.NET/Properties/AssemblyInfo.cs
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.9.*")]
[assembly: AssemblyFileVersion("0.9.5.0")]
[assembly: AssemblyFileVersion("0.9.6.0")]
2 changes: 2 additions & 0 deletions TestHelper/TestHelper.cpp
Expand Up @@ -30,6 +30,7 @@ using namespace std;
typedef void (__stdcall *NotificationListenerCallback)(ConsoleNotificationType);

extern "C" {
void __stdcall InitDll();
void __stdcall SetFlags(uint64_t flags);
void __stdcall InitializeEmu(const char* homeFolder, void*, void*, bool, bool, bool);
void __stdcall SetControllerType(uint32_t port, ControllerType type);
Expand Down Expand Up @@ -189,6 +190,7 @@ int main(int argc, char* argv[])
std::getchar();
} else if(argc == 3) {
char* testFilename = argv[2];
InitDll();
SetFlags(0x8000000000000000); //EmulationFlags::ConsoleMode
InitializeEmu(mesenFolder.c_str(), nullptr, nullptr, false, false, false);
RegisterNotificationCallback(0, (NotificationListenerCallback)OnNotificationReceived);
Expand Down

0 comments on commit c6f7afd

Please sign in to comment.