From: sparky4 Date: Mon, 1 Dec 2014 16:57:29 +0000 (-0600) Subject: modified: scroll.exe X-Git-Url: http://4ch.mooo.com/gitweb/?a=commitdiff_plain;h=63500337d1ae9beef163eac803896828c6da3477;p=16.git modified: scroll.exe modified: src/scroll.c --- diff --git a/scroll.exe b/scroll.exe index 7532e826..ff8cfbad 100644 Binary files a/scroll.exe and b/scroll.exe differ diff --git a/src/scroll.c b/src/scroll.c index 99cf8e6a..bf2f4143 100644 --- a/src/scroll.c +++ b/src/scroll.c @@ -544,7 +544,7 @@ mapDrawRow(map_view_t *mv, int tx, int ty, word y, word poopoffset) { word x; int i; poopoffset%=SPEED; -printf("y: %d\n", poopoffset); +//printf("y: %d\n", poopoffset); /* the position within the map array */ i=ty * mv->map->width + tx; for(x=poopoffset; x<(SCREEN_WIDTH+mv->dxThresh)/(poopoffset+1) && tx < mv->map->width; x+=mv->map->tiles->tileWidth, tx++) { @@ -562,7 +562,7 @@ mapDrawCol(map_view_t *mv, int tx, int ty, word x, word poopoffset) { int y; int i; poopoffset%=SPEED; -printf("x: %d\n", poopoffset); +//printf("x: %d\n", poopoffset); /* location in the map array */ i=ty * mv->map->width + tx;