JonathanJTang / snake-Python

A simple game programmed using Python
0 stars 1 forks source link

Problem with displaying "GAME OVER" and "GAME PAUSED" graphics #13

Closed josephhtang closed 6 years ago

josephhtang commented 6 years ago

When I misc.stamp() the "GAME OVER" message (it's an image), the message doesn't get displayed unless I put a line of misc.write(" ") after misc.stamp().

Like this: (without line 3 it wouldn't work) 1 misc.shape("gameover-text.gif") 2 stampID = misc.stamp() 3 misc.write(" ")

Same with the "GAME PAUSED" message in the pauseGameHandler() function.

Do you know why it's like that?

josephhtang commented 6 years ago

Problem solved. Issue closed.