summaryrefslogtreecommitdiff
path: root/src/globals.c
diff options
context:
space:
mode:
authortwinaphex2018-12-28 00:32:13 +0100
committertwinaphex2018-12-28 00:32:13 +0100
commitc007afe6fd51827fade7aa15a0a798be8bd97839 (patch)
tree3b8aca538bec3b42ef9bd33549a15110c3a20e37 /src/globals.c
parent29db3cf00f552808b3f1dc5d11fcdbbefc659ec4 (diff)
downloadsnes9x2002-c007afe6fd51827fade7aa15a0a798be8bd97839.tar.gz
snes9x2002-c007afe6fd51827fade7aa15a0a798be8bd97839.tar.bz2
snes9x2002-c007afe6fd51827fade7aa15a0a798be8bd97839.zip
Start significantly refactoring this codebase so we can get it
to work with MSVC
Diffstat (limited to 'src/globals.c')
-rw-r--r--src/globals.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/globals.c b/src/globals.c
index cc60f25..8d09213 100644
--- a/src/globals.c
+++ b/src/globals.c
@@ -41,7 +41,6 @@
* Super NES and Super Nintendo Entertainment System are trademarks of
* Nintendo Co., Limited and its subsidiary companies.
*/
-// START_EXTERN_C
#include "snes9x.h"
#include "memmap.h"
#include "ppu.h"
@@ -55,9 +54,7 @@
#include "soundux.h"
#include "cheats.h"
#include "sa1.h"
-// END_EXTERN_C
-START_EXTERN_C
char String[513];
int (*APUMainLoop)(int);
@@ -100,8 +97,6 @@ CMemory Memory;
SSNESGameFixes SNESGameFixes;
-END_EXTERN_C
-
FxInit_s SuperFX;
SPPU PPU;
@@ -281,7 +276,6 @@ uint32 TailMask [5] =
#endif
};
-START_EXTERN_C
uint8 APUROM [64] =
{
0xCD, 0xEF, 0xBD, 0xE8, 0x00, 0xC6, 0x1D, 0xD0, 0xFC, 0x8F, 0xAA, 0xF4, 0x8F,
@@ -437,5 +431,3 @@ uint8 S9xE0M0X0 [256] =
2, 7, 6, 8, 5, 5, 8, 7, 2, 6, 5, 2, 6, 6, 9, 6
};
#endif
-
-END_EXTERN_C