From 2af28e38fab90eab78d159a49b2e359b53d4ed1b Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 10 Dec 2019 14:15:22 -0500 Subject: [PATCH] Updates to work with latest libstormgames --- numnastics | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/numnastics b/numnastics index d04c116..15f8465 100755 --- a/numnastics +++ b/numnastics @@ -58,9 +58,9 @@ def game(mode): return "menu" # Game starts at main menu -mode = game_menu("start game", "instructions", "donate", "credits", "learn sounds", "exit_game") +mode = game_menu(sounds, "start game", "instructions", "donate", "credits", "learn sounds", "exit_game") while mode != "exit_game": - if mode == "menu": mode = game_menu("start game", "instructions", "donate", "credits", "learn sounds", "exit_game") + if mode == "menu": mode = game_menu(sounds, "start game", "instructions", "donate", "credits", "learn sounds", "exit_game") if mode == "start game": mode = game(mode) if mode == "learn sounds": mode = learn_sounds(sounds) time.sleep(.001)