mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
G65816: fixed operation on PowerPC Linux where char is unsigned [R. Belmont, billb]
This commit is contained in:
parent
ebffa2ee9c
commit
7a3d9310ee
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue