summaryrefslogtreecommitdiff
path: root/src/tile16.h
diff options
context:
space:
mode:
authortwinaphex2015-11-08 03:01:23 +0100
committertwinaphex2015-11-08 03:01:23 +0100
commit6617a40eda2d432948f44e00eb7a3ae09adb7113 (patch)
treeb1c1ce02bfb38794eeaa921ae90ad369254cd457 /src/tile16.h
parent6668281f17bbee8463e1fa4c97333d5d0b8d08c8 (diff)
downloadsnes9x2002-6617a40eda2d432948f44e00eb7a3ae09adb7113.tar.gz
snes9x2002-6617a40eda2d432948f44e00eb7a3ae09adb7113.tar.bz2
snes9x2002-6617a40eda2d432948f44e00eb7a3ae09adb7113.zip
Add more non-ARM_ASM codepaths
Diffstat (limited to 'src/tile16.h')
-rw-r--r--src/tile16.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tile16.h b/src/tile16.h
index 3fc1be6..f856b8e 100644
--- a/src/tile16.h
+++ b/src/tile16.h
@@ -44,7 +44,12 @@
void SelectConvertTile();
void SelectPalette();
+
+#ifdef ARM_ASM
extern uint8 (*ConvertTile) (uint8 *pCache, uint32 TileAddr);
+#else
+uint8 ConvertTile (uint8 *pCache, uint32 TileAddr);
+#endif
extern uint32 TileBlank;