diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-03-26 07:40:58 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-03-26 07:40:58 +0000 |
commit | ccf0b720ba9be02de6ef1cadd2e1be4ebccb92fa (patch) | |
tree | b25c32c1e02b43fe0bab8898c3dc8423cf888545 /gst/nsf/vrcvisnd.c | |
parent | 6763549151b4311c933a2751346fe37b41acf5ba (diff) | |
download | gst-plugins-bad-ccf0b720ba9be02de6ef1cadd2e1be4ebccb92fa.tar.gz gst-plugins-bad-ccf0b720ba9be02de6ef1cadd2e1be4ebccb92fa.tar.bz2 gst-plugins-bad-ccf0b720ba9be02de6ef1cadd2e1be4ebccb92fa.zip |
gst/nsf/: Remove memguard again and apply hopefully all previously dropped local patches. Should be really better tha...
Original commit message from CVS:
* gst/nsf/Makefile.am:
* gst/nsf/fds_snd.c:
* gst/nsf/mmc5_snd.c:
* gst/nsf/nsf.c:
* gst/nsf/types.h:
* gst/nsf/vrc7_snd.c:
* gst/nsf/vrcvisnd.c:
* gst/nsf/memguard.c:
* gst/nsf/memguard.h:
Remove memguard again and apply hopefully all previously dropped
local patches. Should be really better than the old version now.
Diffstat (limited to 'gst/nsf/vrcvisnd.c')
-rw-r--r-- | gst/nsf/vrcvisnd.c | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/gst/nsf/vrcvisnd.c b/gst/nsf/vrcvisnd.c index 56e423cf..ffabe0d9 100644 --- a/gst/nsf/vrcvisnd.c +++ b/gst/nsf/vrcvisnd.c @@ -23,6 +23,7 @@ ** $Id$ */ +#include <stdio.h> #include "types.h" #include "vrcvisnd.h" #include "nes_apu.h" @@ -174,7 +175,7 @@ static apu_memwrite vrcvi_memwrite[] = { {0x9000, 0x9002, vrcvi_write}, /* vrc6 */ {0xA000, 0xA002, vrcvi_write}, {0xB000, 0xB002, vrcvi_write}, - {-1, -1, NULL} + {(uint32) - 1, (uint32) - 1, NULL} }; apuext_t vrcvi_ext = { @@ -188,7 +189,20 @@ apuext_t vrcvi_ext = { /* ** $Log$ -** Revision 1.3 2008/03/25 15:56:13 slomo +** Revision 1.4 2008/03/26 07:40:56 slomo +** * gst/nsf/Makefile.am: +** * gst/nsf/fds_snd.c: +** * gst/nsf/mmc5_snd.c: +** * gst/nsf/nsf.c: +** * gst/nsf/types.h: +** * gst/nsf/vrc7_snd.c: +** * gst/nsf/vrcvisnd.c: +** * gst/nsf/memguard.c: +** * gst/nsf/memguard.h: +** Remove memguard again and apply hopefully all previously dropped +** local patches. Should be really better than the old version now. +** +** Revision 1.3 2008-03-25 15:56:13 slomo ** Patch by: Andreas Henriksson <andreas at fatal dot set> ** * gst/nsf/Makefile.am: ** * gst/nsf/dis6502.h: |