diff options
author | twinaphex | 2015-11-10 04:17:06 +0100 |
---|---|---|
committer | twinaphex | 2015-11-10 04:17:06 +0100 |
commit | 80b1ab9c519318ad5c2c5f7eb3f6b0349dccee36 (patch) | |
tree | 0def409b3ef9a0522722c03e91dc4abcd6c0c769 | |
parent | 5e6455285bec454190ace7a61b034891cc2f99b3 (diff) | |
download | snes9x2002-80b1ab9c519318ad5c2c5f7eb3f6b0349dccee36.tar.gz snes9x2002-80b1ab9c519318ad5c2c5f7eb3f6b0349dccee36.tar.bz2 snes9x2002-80b1ab9c519318ad5c2c5f7eb3f6b0349dccee36.zip |
Cleanups
-rw-r--r-- | src/apu.c | 5 | ||||
-rw-r--r-- | src/snapshot.h | 1 |
2 files changed, 0 insertions, 6 deletions
@@ -45,11 +45,6 @@ #include "soundux.h"
#include "cpuexec.h"
-/* For note-triggered SPC dump support */
-//#include "snapshot.h"
-
-//extern int NoiseFreq [32];
-
#undef ABS
#define ABS(a) ((a) < 0 ? -(a) : (a))
#define ENVX_SHIFT 24
diff --git a/src/snapshot.h b/src/snapshot.h index 1af02fd..5c55d2c 100644 --- a/src/snapshot.h +++ b/src/snapshot.h @@ -57,7 +57,6 @@ bool8 S9xFreezeGame(const char* filename); bool8 S9xUnfreezeGame(const char* filename);
bool8 Snapshot(const char* filename);
bool8 S9xLoadSnapshot(const char* filename);
-bool8 S9xSPCDump(const char* filename);
END_EXTERN_C
#endif
|