]> git.sur5r.net Git - cc65/commitdiff
Replaced hardcoded constants with macros.
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 28 Feb 2012 21:49:24 +0000 (21:49 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 28 Feb 2012 21:49:24 +0000 (21:49 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5569 b7a2c559-68d2-44c3-8de9-860c34a00d81

samples/geos/hello2.c

index cb2247030caee308193a872eedb348f6738bc780..f4f57a6cb090a78b24c8f1be86f9b35b6ebd0c7f 100644 (file)
@@ -13,7 +13,7 @@
 #include <geos.h>
 
 // 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)