summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/apu.c3
-rw-r--r--src/apu.h4
-rw-r--r--src/ppu_.c2
3 files changed, 4 insertions, 5 deletions
diff --git a/src/apu.c b/src/apu.c
index 5814070..3e7ddd1 100644
--- a/src/apu.c
+++ b/src/apu.c
@@ -46,6 +46,7 @@
#include "snes9x.h"
#include "spc700.h"
#include "apu.h"
+#include "apumem.h"
#include "soundux.h"
#include "cpuexec.h"
@@ -410,8 +411,6 @@ void S9xDeinitAPU()
}
}
-uint8 APUROM [64];
-
void S9xResetAPU(void)
{
int i, j;
diff --git a/src/apu.h b/src/apu.h
index 5d08355..a4927ea 100644
--- a/src/apu.h
+++ b/src/apu.h
@@ -103,8 +103,8 @@ typedef struct
} SIAPU;
-SAPU APU;
-SIAPU IAPU;
+extern SAPU APU;
+extern SIAPU IAPU;
static INLINE void S9xAPUUnpackStatus(void)
{
diff --git a/src/ppu_.c b/src/ppu_.c
index 27891d5..c44374b 100644
--- a/src/ppu_.c
+++ b/src/ppu_.c
@@ -900,7 +900,7 @@ void S9xSetPPU(uint8 Byte, uint16 Address)
if (Byte & FLG_G)
S9xSuperFXExec();
else
- FxFlushCache(&GSU);
+ FxFlushCache();
}
else
Memory.FillRAM [Address] = Byte;