mirror of
https://github.com/libretro/FBNeo.git
synced 2024-11-30 12:30:44 +00:00
m377 signed char for int8 on android might fix android troubles for na1
This commit is contained in:
parent
aff623f947
commit
dbf4afebf2
@ -32,7 +32,7 @@
|
||||
|
||||
/* Allow for architectures that don't have 8-bit sizes */
|
||||
#if UCHAR_MAX == 0xff
|
||||
#define int8 char
|
||||
#define int8 signed char
|
||||
#define MAKE_INT_8(A) (int8)((A)&0xff)
|
||||
#else
|
||||
#define int8 int
|
||||
|
Loading…
Reference in New Issue
Block a user