diff --git a/fallout_selection.py b/fallout_selection.py index 0e26609..e27f8f0 100644 --- a/fallout_selection.py +++ b/fallout_selection.py @@ -40,6 +40,7 @@ def makeSelection(scr, SELECTIONS, MSGS): elif inchar == curses.KEY_DOWN and selection < selection_count - 1: selection += 1 addSound("keyenter") + addSound("keyenter") if MSGS and MSGS[selection]: whole_line = '> ' + MSGS[selection] space = width - len(whole_line) % width @@ -48,7 +49,6 @@ def makeSelection(scr, SELECTIONS, MSGS): scr.addstr(whole_line) scr.refresh() sleep(2) - addSound("keyenter") return selection