mirror of
https://github.com/phooky/Apple-410.git
synced 2025-08-05 13:24:53 +00:00
fix for unreachable code (should have been looking for a tab, not a newline)
This commit is contained in:
@@ -60,7 +60,7 @@ class Font:
|
||||
if c == '\r' or c == '\n':
|
||||
xoff = 0
|
||||
yoff += 10
|
||||
elif c == '\n':
|
||||
elif c == '\t':
|
||||
xoff += 20
|
||||
else:
|
||||
self.render_char(ctx,c,xoff,yoff)
|
||||
|
Reference in New Issue
Block a user