From 266f35ee3742e05690fad267cc2b41a83c1597ac Mon Sep 17 00:00:00 2001 From: Greg King Date: Fri, 18 Mar 2022 01:06:48 -0400 Subject: [PATCH] Made tgidemo draw circles in blue instead of orange. That change lets it be built on two more platforms (Atmos, Telestrat). --- samples/Makefile | 7 ++++--- samples/tgidemo.c | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/samples/Makefile b/samples/Makefile index 5c44d1947..86be30a83 100644 --- a/samples/Makefile +++ b/samples/Makefile @@ -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 \ diff --git a/samples/tgidemo.c b/samples/tgidemo.c index b431cfb98..f193a1b83 100644 --- a/samples/tgidemo.c +++ b/samples/tgidemo.c @@ -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;