Skip to content

Commit

Permalink
Fixed a regression with doneText
Browse files Browse the repository at this point in the history
  • Loading branch information
asweigart committed Aug 12, 2012
1 parent c7be699 commit 8fb972d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DemonKingdom/demonkingdom_makeover.py
Expand Up @@ -601,7 +601,7 @@ def draw():
viewDone = True
screen.fill(BLACK)
for i in range(len(doneText)):
screen.blit(doneText1, (10, y - 26 * (len(doneText) - 1 - i)))
screen.blit(doneText[i], (10, y - 26 * (len(doneText) - 1 - i)))
if y <= 0:
viewDone = True
pygame.display.flip()
Expand Down

0 comments on commit 8fb972d

Please sign in to comment.