mirror of
https://github.com/cc65/cc65.git
synced 2025-02-02 00:35:32 +00:00
Made tgidemo draw circles in blue instead of orange.
That change lets it be built on two more platforms (Atmos, Telestrat).
This commit is contained in:
parent
b2ae73879b
commit
266f35ee37
@ -199,7 +199,8 @@ EXELIST_atmos = \
|
||||
ascii \
|
||||
hello \
|
||||
mandelbrot \
|
||||
sieve
|
||||
sieve \
|
||||
tgidemo
|
||||
|
||||
EXELIST_bbc = \
|
||||
notavailable
|
||||
@ -311,7 +312,7 @@ EXELIST_sim65c02 = $(EXELIST_sim6502)
|
||||
|
||||
EXELIST_supervision = \
|
||||
notavailable
|
||||
|
||||
|
||||
EXELIST_sym1 = \
|
||||
notavailable
|
||||
|
||||
@ -321,7 +322,7 @@ EXELIST_telestrat = \
|
||||
hello \
|
||||
mandelbrot \
|
||||
sieve \
|
||||
# tgidemo
|
||||
tgidemo
|
||||
|
||||
EXELIST_vic20 = \
|
||||
ascii \
|
||||
|
@ -68,7 +68,7 @@ static void DoWarning (void)
|
||||
|
||||
static void DoCircles (void)
|
||||
{
|
||||
static const unsigned char Palette[2] = { TGI_COLOR_WHITE, TGI_COLOR_ORANGE };
|
||||
static const unsigned char Palette[2] = { TGI_COLOR_WHITE, TGI_COLOR_BLUE };
|
||||
unsigned char I;
|
||||
unsigned char Color = COLOR_BACK;
|
||||
const unsigned X = MaxX / 2;
|
||||
|
Loading…
x
Reference in New Issue
Block a user