From: ol.sc Date: Tue, 28 Feb 2012 21:49:24 +0000 (+0000) Subject: Replaced hardcoded constants with macros. X-Git-Tag: V2.14~494 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c136a48eb829d7627c9c406d88ee8d4176eaac6b;p=cc65 Replaced hardcoded constants with macros. git-svn-id: svn://svn.cc65.org/cc65/trunk@5569 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/samples/geos/hello2.c b/samples/geos/hello2.c index cb2247030..f4f57a6cb 100644 --- a/samples/geos/hello2.c +++ b/samples/geos/hello2.c @@ -13,7 +13,7 @@ #include // Let's define the window we're operating -struct window wholeScreen = {0, 199, 0, 319}; +struct window wholeScreen = {0, SC_PIX_HEIGHT-1, 0, SC_PIX_WIDTH-1}; void main (void)