Everything was off one pixel to the right

This commit is contained in:
Pedro de Oliveira 2014-08-31 04:32:15 +01:00
parent 7ccde2d46b
commit 750273058e
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ draw ()
if (READ_BIT(c,z)) {
rect.w = 1;
rect.h = 1;
rect.x = (i*8-z)+8;
rect.x = (i*8-z)+7;
rect.y = b;
SDL_FillRect (screen, &rect, color);
}