diff options
Diffstat (limited to 'emulators/raine/files/patch-source_games_mitchell.c')
-rw-r--r-- | emulators/raine/files/patch-source_games_mitchell.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/emulators/raine/files/patch-source_games_mitchell.c b/emulators/raine/files/patch-source_games_mitchell.c deleted file mode 100644 index 33782ccf055c..000000000000 --- a/emulators/raine/files/patch-source_games_mitchell.c +++ /dev/null @@ -1,19 +0,0 @@ ---- source/games/mitchell.c.orig Thu Nov 17 17:41:02 2005 -+++ source/games/mitchell.c Thu Nov 17 17:41:34 2005 -@@ -451,6 +451,7 @@ - - static UINT8 pang_port5_r (UINT32 offset) { - int bit; -+ UINT8 res; - - bit = EEPROM_read_bit() << 7; - // 2 bits are togled in the cpu frame, 1 for the vblank, the other unknown -@@ -458,7 +459,7 @@ - /* if (Machine->gamedrv == &driver_mgakuen2) /\* hack... music doesn't work otherwise *\/ */ - /* bit ^= 0x08; */ - -- UINT8 res = (input_buffer[0] & 0x7f) | bit; -+ res = (input_buffer[0] & 0x7f) | bit; - return res; - } - |