Fixed music not pausing when play is selected.

This commit is contained in:
Storm Dragon 2025-03-15 21:28:06 -04:00
parent a9c2c4332d
commit 2c34f31a82

12
menu.py
View File

@ -182,11 +182,18 @@ def game_menu(sounds, playCallback=None, *customOptions):
try:
pygame.mixer.music.fadeout(500)
time.sleep(0.5)
except:
except Exception as e:
print(f"Could not fade music: {e}")
pass
playCallback()
else:
# Otherwise return "play" to the caller
try:
pygame.mixer.music.fadeout(500)
time.sleep(0.5)
except Exception as e:
print(f"Could not fade music: {e}")
pass
return "play"
# Handle standard options directly
elif selectedOption in ["instructions", "credits", "learn_sounds", "high_scores", "donate"]:
@ -228,7 +235,8 @@ def game_menu(sounds, playCallback=None, *customOptions):
try:
pygame.mixer.music.fadeout(500)
time.sleep(0.5)
except:
except Exception as e:
print(f"Could not fade music: {e}")
pass
return selectedOption
except Exception as e: