diff options
Diffstat (limited to 'src/devices/machine/s2636.h')
-rw-r--r-- | src/devices/machine/s2636.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/s2636.h b/src/devices/machine/s2636.h index ce46ee4581d..56c0d8f4b4b 100644 --- a/src/devices/machine/s2636.h +++ b/src/devices/machine/s2636.h @@ -10,7 +10,7 @@ #define __S2636_H__ -#define S2636_IS_PIXEL_DRAWN(p) (((p) & 0x08) ? TRUE : FALSE) +#define S2636_IS_PIXEL_DRAWN(p) (((p) & 0x08) ? true : false) #define S2636_PIXEL_COLOR(p) ((p) & 0x07) |