From 750273058eb907de34512608943d52abbea1d6eb Mon Sep 17 00:00:00 2001 From: Pedro de Oliveira Date: Sun, 31 Aug 2014 04:32:15 +0100 Subject: [PATCH] Everything was off one pixel to the right --- zxscr/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zxscr/main.c b/zxscr/main.c index 4035b52..43ab9a6 100644 --- a/zxscr/main.c +++ b/zxscr/main.c @@ -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); }