From c136a48eb829d7627c9c406d88ee8d4176eaac6b Mon Sep 17 00:00:00 2001
From: "ol.sc"
Date: Tue, 28 Feb 2012 21:49:24 +0000
Subject: [PATCH] Replaced hardcoded constants with macros.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5569 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
samples/geos/hello2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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)
--
2.39.5