Skip to content

Commit

Permalink
Update Mednafen to 1.24.1
Browse files Browse the repository at this point in the history
  • Loading branch information
clobber committed Apr 19, 2020
1 parent 1a9f9fd commit 775b89f
Show file tree
Hide file tree
Showing 15 changed files with 547 additions and 424 deletions.
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.24.0</string>
<string>1.24.1</string>
<key>NSPrincipalClass</key>
<string>OEGameCoreController</string>
<key>OEGameCoreClass</key>
Expand Down
8 changes: 4 additions & 4 deletions Mednafen.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4752,9 +4752,9 @@
OTHER_CFLAGS = (
"-fwrapv",
"-DHAVE_MKDIR",
"-DMEDNAFEN_VERSION=\\\"1.24.0-UNSTABLE\\\"",
"-DMEDNAFEN_VERSION=\\\"1.24.1\\\"",
"-DPACKAGE=\\\"mednafen\\\"",
"-DMEDNAFEN_VERSION_NUMERIC=0x00102400",
"-DMEDNAFEN_VERSION_NUMERIC=0x00102401",
"-DPSS_STYLE=1",
"-DMPC_FIXED_POINT",
"-DARCH_X86",
Expand Down Expand Up @@ -4818,9 +4818,9 @@
OTHER_CFLAGS = (
"-fwrapv",
"-DHAVE_MKDIR",
"-DMEDNAFEN_VERSION=\\\"1.24.0-UNSTABLE\\\"",
"-DMEDNAFEN_VERSION=\\\"1.24.1\\\"",
"-DPACKAGE=\\\"mednafen\\\"",
"-DMEDNAFEN_VERSION_NUMERIC=0x00102400",
"-DMEDNAFEN_VERSION_NUMERIC=0x00102401",
"-DPSS_STYLE=1",
"-DMPC_FIXED_POINT",
"-DARCH_X86",
Expand Down
8 changes: 0 additions & 8 deletions mednafen/MTStreamReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,6 @@ class MTStreamReader
need_sync = true;
}

INLINE void sync(void)
{
MThreading::Sem_Wait(ack_sem);
//
pending_command = Command_NOP;
//
MThreading::Sem_Post(command_sem);
}
private:

static int read_thread_entry_(void* data);
Expand Down
4 changes: 2 additions & 2 deletions mednafen/drivers/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ static const MDFNSetting_EnumList FontSize_List[] =

static const MDFNSetting_EnumList FPSPos_List[] =
{
{ "upper_left", 0 },
{ "upper_right", 1 },
{ "upper_left", 0, gettext_noop("Upper left.") },
{ "upper_right", 1, gettext_noop("Upper right.") },

{ NULL, 0 },
};
Expand Down
Loading

0 comments on commit 775b89f

Please sign in to comment.