summaryrefslogtreecommitdiff
path: root/src/seta.c
diff options
context:
space:
mode:
authortwinaphex2018-12-28 00:32:13 +0100
committertwinaphex2018-12-28 00:32:13 +0100
commitc007afe6fd51827fade7aa15a0a798be8bd97839 (patch)
tree3b8aca538bec3b42ef9bd33549a15110c3a20e37 /src/seta.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/seta.c')
-rw-r--r--src/seta.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/seta.c b/src/seta.c
index 7b306c5..cb1aaf4 100644
--- a/src/seta.c
+++ b/src/seta.c
@@ -95,7 +95,6 @@
void (*SetSETA)(uint32, uint8) = &S9xSetST010;
uint8(*GetSETA)(uint32) = &S9xGetST010;
-START_EXTERN_C
uint8 S9xGetSetaDSP(uint32 Address)
{
return GetSETA(Address);
@@ -105,5 +104,4 @@ void S9xSetSetaDSP(uint8 Byte, uint32 Address)
{
SetSETA(Address, Byte);
}
-END_EXTERN_C