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@5569 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2012-02-28 21:49:24 +00:00
parent f6825b244a
commit c136a48eb8

View 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)