aboutsummaryrefslogtreecommitdiff
path: root/source/globals.c
diff options
context:
space:
mode:
authoraliaspider2014-10-29 10:11:16 +0100
committeraliaspider2014-10-29 10:11:16 +0100
commit4fb67d24cdde1e085d09a699ed2f5d68c306f534 (patch)
tree92fbe54e835ca1c799f15b250241929681a26a99 /source/globals.c
parent9c8d36087b5b35c35c7ff9276a15d400ce45f519 (diff)
downloadsnes9x2005-4fb67d24cdde1e085d09a699ed2f5d68c306f534.tar.gz
snes9x2005-4fb67d24cdde1e085d09a699ed2f5d68c306f534.tar.bz2
snes9x2005-4fb67d24cdde1e085d09a699ed2f5d68c306f534.zip
get rid of all remaining C++ code.
Diffstat (limited to 'source/globals.c')
-rw-r--r--source/globals.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/source/globals.c b/source/globals.c
index 5fb7051..3a4dc4b 100644
--- a/source/globals.c
+++ b/source/globals.c
@@ -106,19 +106,19 @@ char String[513];
struct Missing missing;
-struct SICPU ICPU;
+SICPU ICPU;
-struct SCPUState CPU;
+SCPUState CPU;
-struct SAPU APU;
+SAPU APU;
-struct SIAPU IAPU;
+SIAPU IAPU;
-struct SSettings Settings;
+SSettings Settings;
-struct SDSP1 DSP1;
+SDSP1 DSP1;
-struct SSA1 SA1;
+SSA1 SA1;
SSoundData SoundData;
@@ -127,16 +127,16 @@ SnesModel M2SNES={2,4,3};
SnesModel* Model=&M1SNES;
-uint8 *SRAM = NULL;
-uint8 *ROM = NULL;
-uint8 *RegRAM = NULL;
+uint8 *SRAM_g = NULL;
+uint8 *ROM_g = NULL;
+uint8 *RegRAM_g = NULL;
uint8 *C4RAM = NULL;
long OpAddress = 0;
CMemory Memory;
-struct SSNESGameFixes SNESGameFixes;
+SSNESGameFixes SNESGameFixes;
uint8 OpenBus = 0;