diff options
Diffstat (limited to 'src/help.c')
-rw-r--r-- | src/help.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -28,6 +28,8 @@ const char *_db_help_text = PACKAGE_NAME " version " PACKAGE_VERSION "\n" "\n" + "Press Esc or Enter to exit help\n" + "\n" "Evade the balls and get to the target! Dodge Balls is a simple " "puzzle game with obstacle courses consisting of moving balls.\n" "\n" @@ -167,6 +169,11 @@ db_help(void) text_src_rect.y = surface->h - text_src_rect.h; break; + case SDLK_ESCAPE: + case SDLK_RETURN: + case SDLK_KP_ENTER: + _db_help_quit = 1; + break; default: break; } |