display full width of characters

This commit is contained in:
James Tauber 2011-08-13 06:37:47 -04:00
parent 588f913eb2
commit 9e92bbba97
1 changed files with 2 additions and 2 deletions

View File

@ -172,8 +172,8 @@ class Display:
pixels = pygame.PixelArray(self.screen)
for line in range(8):
b = self.characters[ch][line]
for i in range(5):
b = self.characters[ch][line] << 1
for i in range(7):
x = 2 * (column * 7 + (5 - i))
y = 2 * (row * 8 + line)
bit = (b >> i) % 2