Fixed a bug with pause game.

This commit is contained in:
Storm Dragon 2025-02-16 17:04:59 -05:00
parent db6c34f714
commit e7caff3d0f

View File

@ -332,12 +332,12 @@ def pause_game():
event = pygame.event.wait()
if event.type == pygame.KEYDOWN and not event.key == pygame.K_BACKSPACE: continue
try:
pygame.mixer.pause()
pygame.mixer.unpause()
except:
pass
try:
pygame.mixer.music.pause()
pygame.mixer.music.unpause()
except:
pass