Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit c6f7afd

Browse files
committed
Version Update: 0.9.6
1 parent ce123bd commit c6f7afd

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Core/EmulationSettings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
#include "Console.h"
44
#include "RewindManager.h"
55

6-
//Version 0.9.5
6+
//Version 0.9.6
77
uint16_t EmulationSettings::_versionMajor = 0;
88
uint8_t EmulationSettings::_versionMinor = 9;
9-
uint8_t EmulationSettings::_versionRevision = 5;
9+
uint8_t EmulationSettings::_versionRevision = 6;
1010

1111
SimpleLock EmulationSettings::_lock;
1212
SimpleLock EmulationSettings::_shortcutLock;

GUI.NET/Config/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class Configuration
1515
private const int MaxRecentFiles = 10;
1616
private bool _needToSave = false;
1717

18-
public string MesenVersion = "0.9.5";
18+
public string MesenVersion = "0.9.6";
1919
public PreferenceInfo PreferenceInfo;
2020
public AudioInfo AudioInfo;
2121
public VideoInfo VideoInfo;

GUI.NET/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("0.9.*")]
36-
[assembly: AssemblyFileVersion("0.9.5.0")]
36+
[assembly: AssemblyFileVersion("0.9.6.0")]

TestHelper/TestHelper.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ using namespace std;
3030
typedef void (__stdcall *NotificationListenerCallback)(ConsoleNotificationType);
3131

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

0 commit comments

Comments
 (0)