aboutsummaryrefslogtreecommitdiff
path: root/source/fxemu.h
diff options
context:
space:
mode:
authortwinaphex2017-08-11 17:53:39 +0200
committertwinaphex2017-08-11 17:53:39 +0200
commit62be8bed4dc3dc7793f1df1391f153436e4ea949 (patch)
treeceeb31adb5fbbae99184fdb3d89cafacc70f556e /source/fxemu.h
parentb9c74ceb1352c8f433cf6bf2c446ae07457c5267 (diff)
downloadsnes9x2005-62be8bed4dc3dc7793f1df1391f153436e4ea949.tar.gz
snes9x2005-62be8bed4dc3dc7793f1df1391f153436e4ea949.tar.bz2
snes9x2005-62be8bed4dc3dc7793f1df1391f153436e4ea949.zip
More buildfixes
Diffstat (limited to 'source/fxemu.h')
-rw-r--r--source/fxemu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fxemu.h b/source/fxemu.h
index 3af330c..3161ebd 100644
--- a/source/fxemu.h
+++ b/source/fxemu.h
@@ -55,6 +55,6 @@ extern void fx_updateRamBank(uint8_t Byte);
/* Return the number of bytes in an opcode */
#define OPCODE_BYTES(op) ((((op) >= 0x05 && (op) <= 0xf) || ((op) >= 0xa0 && (op) <= 0xaf)) ? 2 : (((op) >= 0xf0) ? 3 : 1))
-extern void fx_computeScreenPointers();
+extern void fx_computeScreenPointers(void);
#endif