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
2 changed files with 5 additions and 4 deletions
|
@ -199,7 +199,8 @@ EXELIST_atmos = \
|
||||||
ascii \
|
ascii \
|
||||||
hello \
|
hello \
|
||||||
mandelbrot \
|
mandelbrot \
|
||||||
sieve
|
sieve \
|
||||||
|
tgidemo
|
||||||
|
|
||||||
EXELIST_bbc = \
|
EXELIST_bbc = \
|
||||||
notavailable
|
notavailable
|
||||||
|
@ -311,7 +312,7 @@ EXELIST_sim65c02 = $(EXELIST_sim6502)
|
||||||
|
|
||||||
EXELIST_supervision = \
|
EXELIST_supervision = \
|
||||||
notavailable
|
notavailable
|
||||||
|
|
||||||
EXELIST_sym1 = \
|
EXELIST_sym1 = \
|
||||||
notavailable
|
notavailable
|
||||||
|
|
||||||
|
@ -321,7 +322,7 @@ EXELIST_telestrat = \
|
||||||
hello \
|
hello \
|
||||||
mandelbrot \
|
mandelbrot \
|
||||||
sieve \
|
sieve \
|
||||||
# tgidemo
|
tgidemo
|
||||||
|
|
||||||
EXELIST_vic20 = \
|
EXELIST_vic20 = \
|
||||||
ascii \
|
ascii \
|
||||||
|
|
|
@ -68,7 +68,7 @@ static void DoWarning (void)
|
||||||
|
|
||||||
static void DoCircles (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 I;
|
||||||
unsigned char Color = COLOR_BACK;
|
unsigned char Color = COLOR_BACK;
|
||||||
const unsigned X = MaxX / 2;
|
const unsigned X = MaxX / 2;
|
||||||
|
|
Loading…
Add table
Reference in a new issue