mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
atari5200: fix COLOR defines' names
COLOR_RED -> COLOR_LIGHTRED and COLOR_GREEN -> COLOR_LIGHTGREEN
This commit is contained in:
parent
be6bba66a9
commit
dfb7c0f24d
@ -115,10 +115,10 @@ POKEY = $E800 ; POKEY area
|
|||||||
; conio color defines
|
; conio color defines
|
||||||
;-------------------------------------------------------------------------
|
;-------------------------------------------------------------------------
|
||||||
|
|
||||||
COLOR_WHITE = 0
|
COLOR_WHITE = 0
|
||||||
COLOR_RED = 1
|
COLOR_LIGHTRED = 1
|
||||||
COLOR_GREEN = 2
|
COLOR_LIGHTGREEN = 2
|
||||||
COLOR_BLACK = 3
|
COLOR_BLACK = 3
|
||||||
|
|
||||||
;-------------------------------------------------------------------------
|
;-------------------------------------------------------------------------
|
||||||
; Cartridge Parameters
|
; Cartridge Parameters
|
||||||
|
@ -78,10 +78,10 @@ extern void atr5200std_joy[]; /* referred to by joy_static_stddrv[] */
|
|||||||
#define ANTIC (*(struct __antic*)0xD400)
|
#define ANTIC (*(struct __antic*)0xD400)
|
||||||
|
|
||||||
/* conio color defines */
|
/* conio color defines */
|
||||||
#define COLOR_WHITE 0x00
|
#define COLOR_WHITE 0x00
|
||||||
#define COLOR_RED 0x01
|
#define COLOR_LIGHTRED 0x01
|
||||||
#define COLOR_GREEN 0x02
|
#define COLOR_LIGHTGREEN 0x02
|
||||||
#define COLOR_BLACK 0x03
|
#define COLOR_BLACK 0x03
|
||||||
|
|
||||||
/* The following #define will cause the matching function calls in conio.h
|
/* The following #define will cause the matching function calls in conio.h
|
||||||
** to be overlaid by macros with the same names, saving the function call
|
** to be overlaid by macros with the same names, saving the function call
|
||||||
|
Loading…
x
Reference in New Issue
Block a user