Only space exits the screen with AVbin error
Python implementation of the Dual N-Back mental exercise
Brought to you by:
radix-
The screen that displays the error message "Warning: Could not load AVbin. Music disabled." exits only with the press of the space bar although the error message says "Press any key to continue without music support."
The error seems to be from the on_key_press method in the Message class.
It only closes in the event of a space or an enter pressed. This was changed to
if sym:
to allow the program to continue in case of any key press.
Have attached the patch file that fixes the error.
Fixed to allow program to exit Message screen with the press of any key.