always draw the spaces between scanlines

This commit is contained in:
James Tauber 2011-08-13 07:24:23 -04:00
parent 2f71ca9029
commit 8f3b640393
1 changed files with 2 additions and 0 deletions

View File

@ -170,6 +170,8 @@ class Display:
bit = (b >> i) % 2
pixels[x][y] = on if bit else off
pixels[x + 1][y] = on if bit else off
pixels[x][y + 1] = (0, 0, 0)
pixels[x + 1][y + 1] = (0, 0, 0)
else:
lower, upper = divmod(value, 0x10)