1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 20:29:36 +00:00

Replaced hardcoded constants with macros.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5570 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2012-02-28 21:57:45 +00:00
parent c136a48eb8
commit 720d11e59f

View File

@ -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
};