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:
Greg King 2022-03-18 01:06:48 -04:00
parent b2ae73879b
commit 266f35ee37
2 changed files with 5 additions and 4 deletions

View File

@ -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 \

View File

@ -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;