From: ol.sc
Date: Tue, 28 Feb 2012 21:57:45 +0000 (+0000)
Subject: Replaced hardcoded constants with macros.
X-Git-Tag: V2.14~493
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=720d11e59fa5034d7d8967a409f520a9669d76bb;p=cc65
Replaced hardcoded constants with macros.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5570 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
diff --git a/samples/geos/rmvprot.c b/samples/geos/rmvprot.c
index 9f59945eb..4f8798f98 100644
--- a/samples/geos/rmvprot.c
+++ b/samples/geos/rmvprot.c
@@ -18,7 +18,7 @@ char diskName[17] = "";
static const graphicStr clearScreen = {
MOVEPENTO(0, 0),
NEWPATTERN(2),
- RECTANGLETO(319, 199),
+ RECTANGLETO(SC_PIX_WIDTH-1, SC_PIX_HEIGHT-1),
GSTR_END
};