mirror of
https://github.com/jtauber/applepy.git
synced 2024-11-26 16:49:32 +00:00
display full width of characters
This commit is contained in:
parent
588f913eb2
commit
9e92bbba97
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user