diff --git a/menu.py b/menu.py index 606d49a..27cc17b 100644 --- a/menu.py +++ b/menu.py @@ -17,6 +17,8 @@ try: selection += 1 if selection == len(choices): selection = 0 + clear_screen() + fancy_text(0, 0, choices[selection].upper().replace("_", " ")) except KeyboardInterrupt: assert choices[selection] != "exit" draw_string(0, 16, "Loading...")