summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortwinaphex2016-08-05 23:28:14 +0200
committertwinaphex2016-08-05 23:28:14 +0200
commit142a473450f4738dceefbfe6c69272d35b7a5652 (patch)
tree97402b3f0e78d6e924ab4fef00130a2c6d601a23 /src
parent464f4482f87b57f162e1dd9dc26b8e6f70010bba (diff)
downloadsnes9x2002-142a473450f4738dceefbfe6c69272d35b7a5652.tar.gz
snes9x2002-142a473450f4738dceefbfe6c69272d35b7a5652.tar.bz2
snes9x2002-142a473450f4738dceefbfe6c69272d35b7a5652.zip
remove this
Diffstat (limited to 'src')
-rw-r--r--src/sar.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/sar.h b/src/sar.h
index b161053..c49f91f 100644
--- a/src/sar.h
+++ b/src/sar.h
@@ -82,19 +82,6 @@
#include "port.h"
-#ifndef snes9x_types_defined
-#define snes9x_types_defined
-
-typedef unsigned char uint8;
-typedef unsigned short uint16;
-typedef unsigned int uint32;
-typedef unsigned char bool8;
-typedef unsigned int bool32;
-typedef signed char int8;
-typedef short int16;
-typedef int int32;
-#endif
-
#ifdef RIGHTSHIFT_IS_SAR
#define SAR8(b, n) ((b)>>(n))
#define SAR16(b, n) ((b)>>(n))