summaryrefslogtreecommitdiff
path: root/emulators/xmame/patches
diff options
context:
space:
mode:
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;