summaryrefslogtreecommitdiff
path: root/emulators/xmame/patches
diff options
context:
space:
mode:
authorkristerw <kristerw>2001-05-23 21:52:55 +0000
committerkristerw <kristerw>2001-05-23 21:52:55 +0000
commit380a93aceaf46eb6b4aee7bc69ac5b89c728cd1d (patch)
treed9d7dc8bc27353eaa107ae189d1a4da0ca59cb91 /emulators/xmame/patches
parent3ad5c586ab285e53ba906ed3927f33ec9458df34 (diff)
downloadpkgsrc-380a93aceaf46eb6b4aee7bc69ac5b89c728cd1d.tar.gz
Update xmame to 0.37b14.2.
This contains everything from MAME 0.37b14 except for 'steadykey' support. The Unix-specific changes that affect NetBSD are: - The sound device is now released when the emulation is paused. (Shyouzou Sugitani) - Added -hotrod for HotRod and HotRod SE support. Set it to 1 for HotRod, 2 for HotRod SE. - Fixed a bug in logerror() that could cause a crash. (Pete French)
Diffstat (limited to 'emulators/xmame/patches')
-rw-r--r--emulators/xmame/patches/patch-ab22
1 files changed, 0 insertions, 22 deletions
diff --git a/emulators/xmame/patches/patch-ab b/emulators/xmame/patches/patch-ab
deleted file mode 100644
index febeb76f9f0..00000000000
--- a/emulators/xmame/patches/patch-ab
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ab,v 1.7 2001/03/31 18:59:30 kristerw Exp $
---- src/drawgfx.c.orig Wed Mar 28 07:30:13 2001
-+++ src/drawgfx.c Fri Mar 30 23:26:46 2001
-@@ -2,6 +2,9 @@
-
- #include "driver.h"
-
-+/* The heavy use of INLINE in this file causes memory explosion in egcs. */
-+#undef INLINE
-+#define INLINE static
-
- #ifdef LSB_FIRST
- #define SHIFT0 0
-@@ -34,7 +37,7 @@
- return (*((UINT8 *)address ) << SHIFT0) +
- (*((UINT8 *)address+1) << SHIFT1) +
- (*((UINT8 *)address+2) << SHIFT2) +
-- (*((UINT8 *)address+3) << SHIFT3) );
-+ (*((UINT8 *)address+3) << SHIFT3);
- }
- else
- return *(UINT32 *)address;