Version Update: 0.9.6

This commit is contained in:
Sour 2018-08-05 14:30:09 -04:00
parent ce123bdb94
commit c6f7afd3b9
4 changed files with 6 additions and 4 deletions

View file

@ -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;

View file

@ -15,7 +15,7 @@ namespace Mesen.GUI.Config
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;

View file

@ -33,4 +33,4 @@ using System.Runtime.InteropServices;
// 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")]

View file

@ -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);
@ -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);