From d9f02858fdc04c4404834a033850f758e4c8ee7e Mon Sep 17 00:00:00 2001 From: inmarket Date: Sat, 21 Dec 2013 13:21:59 +1000 Subject: Replace NULL's with 0 as NULL is not defined by the Raw32 GOS. --- demos/modules/gwin/console/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'demos/modules/gwin/console') diff --git a/demos/modules/gwin/console/main.c b/demos/modules/gwin/console/main.c index 0efd1c99..83753c6c 100644 --- a/demos/modules/gwin/console/main.c +++ b/demos/modules/gwin/console/main.c @@ -50,11 +50,11 @@ int main(void) { wi.show = TRUE; wi.x = 0; wi.y = 0; wi.width = gdispGetWidth(); wi.height = gdispGetHeight()/2; - GW1 = gwinConsoleCreate(NULL, &wi); + GW1 = gwinConsoleCreate(0, &wi); wi.y = gdispGetHeight()/2; wi.width = gdispGetWidth()/2; wi.height = gdispGetHeight(); - GW2 = gwinConsoleCreate(NULL, &wi); + GW2 = gwinConsoleCreate(0, &wi); wi.x = gdispGetWidth()/2; wi.height = gdispGetHeight(); - GW3 = gwinConsoleCreate(NULL, &wi); + GW3 = gwinConsoleCreate(0, &wi); } /* Use a special font for GW1 */ -- cgit v1.2.3