diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2006-06-20 11:36:20 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2006-06-20 11:36:20 +0000 |
commit | 65506bcd284c4e6ab8677f5a67bd4f57e9b809e5 (patch) | |
tree | ff11ad89194df52dbdbeeb0ceee1517f5f9160e3 /emulators/raine/files/patch-source_games_mitchell.c | |
parent | Upgrade from 0.5r1325 to 0.5r1340 (diff) |
- Update to 0.43.3 [1].
- Stop patching source to be C89 friendly and use USE_GCC=3.2+ instead.
Submitted by: ultragames93 <ultragames93@free.fr> [1]
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; - } - |