From 8a9ed5195b3345635533b6150b9303abbaf5adf3 Mon Sep 17 00:00:00 2001
From: inmarket <andrewh@inmarket.com.au>
Date: Sat, 3 Nov 2018 12:29:30 +1000
Subject: Tidy u gfxSem, gfxMutex and various Macros by converting to new types
 gSem, gMutex etc

---
 demos/applications/combo/bounce.c     | 2 +-
 demos/applications/combo/mandelbrot.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'demos/applications')

diff --git a/demos/applications/combo/bounce.c b/demos/applications/combo/bounce.c
index 7c77e478..4f21ce09 100644
--- a/demos/applications/combo/bounce.c
+++ b/demos/applications/combo/bounce.c
@@ -62,7 +62,7 @@ static gThread	thread;
 #define FLOORCOLOR		HTML2COLOR(0x606060)
 #define SHADOWALPHA		(255-255*0.2)
 
-static DECLARE_THREAD_FUNCTION(task, param) {
+static GFX_THREAD_FUNCTION(task, param) {
 	gCoord		width, height, x, y, radius, ballx, bally, dx, floor;
 	gCoord		minx, miny, maxx, maxy, winx, winy;
 	gCoord		ballcx, ballcy;
diff --git a/demos/applications/combo/mandelbrot.c b/demos/applications/combo/mandelbrot.c
index f70aa356..9e9dc35e 100644
--- a/demos/applications/combo/mandelbrot.c
+++ b/demos/applications/combo/mandelbrot.c
@@ -66,7 +66,7 @@ static void mandelbrot(float x1, float y1, float x2, float y2) {
 	}
 }
 
-static DECLARE_THREAD_FUNCTION(task, param) {
+static GFX_THREAD_FUNCTION(task, param) {
 	float cx, cy;
 	float zoom = 1.0f;
 	(void) param;
-- 
cgit v1.2.3