mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
G65816: fixed operation on PowerPC Linux where char is unsigned [R. Belmont, billb]
This commit is contained in:
parent
ebffa2ee9c
commit
7a3d9310ee
@ -40,7 +40,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