summaryrefslogtreecommitdiff
path: root/audio/xmms-nsf/files/patch-src__nes__handler.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/xmms-nsf/files/patch-src__nes__handler.c')
-rw-r--r--audio/xmms-nsf/files/patch-src__nes__handler.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/audio/xmms-nsf/files/patch-src__nes__handler.c b/audio/xmms-nsf/files/patch-src__nes__handler.c
deleted file mode 100644
index 8c28ac55d005..000000000000
--- a/audio/xmms-nsf/files/patch-src__nes__handler.c
+++ /dev/null
@@ -1,26 +0,0 @@
---- ./src/nes/handler.c.orig Sun Jan 7 05:17:57 2001
-+++ ./src/nes/handler.c Wed Jan 10 20:10:34 2007
-@@ -10,9 +10,9 @@
- static NES_READ_HANDLER *(nprh[0x10]) = { 0, };
- static NES_WRITE_HANDLER *(npwh[0x10]) = { 0, };
- #define EXTREADWRITE(p) \
--static Uint __fastcall ExtRd##p##(Uint A) \
-+static Uint __fastcall ExtRd##p (Uint A) \
- { \
-- NES_READ_HANDLER *ph = nprh[0x##p##]; \
-+ NES_READ_HANDLER *ph = nprh[0x##p ]; \
- do \
- { \
- if (ph->min <= A && A <= ph->max) \
-@@ -22,9 +22,9 @@
- } while ((ph = ph->next) != 0); \
- return 0; \
- } \
--static void __fastcall ExtWr##p##(Uint A, Uint V) \
-+static void __fastcall ExtWr##p (Uint A, Uint V) \
- { \
-- NES_WRITE_HANDLER *ph = npwh[0x##p##]; \
-+ NES_WRITE_HANDLER *ph = npwh[0x##p ]; \
- do \
- { \
- if (ph->min <= A && A <= ph->max) \