diff options
author | Simon Howard | 2011-09-24 18:31:57 +0000 |
---|---|---|
committer | Simon Howard | 2011-09-24 18:31:57 +0000 |
commit | 6e9b549b678a6b8abfedeab62e93214ccb4f08ac (patch) | |
tree | 9845c9d7e0cfb9ff437597a163f79fdf88198283 /src/heretic | |
parent | f742664b920500cb7343ee40338ab6add6acb9a2 (diff) | |
download | chocolate-doom-6e9b549b678a6b8abfedeab62e93214ccb4f08ac.tar.gz chocolate-doom-6e9b549b678a6b8abfedeab62e93214ccb4f08ac.tar.bz2 chocolate-doom-6e9b549b678a6b8abfedeab62e93214ccb4f08ac.zip |
Don't allow menu actions when running with -testcontrols. Quit
immediately when pressing the window close button.
Subversion-branch: /branches/v2-branch
Subversion-revision: 2400
Diffstat (limited to 'src/heretic')
-rw-r--r-- | src/heretic/mn_menu.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/heretic/mn_menu.c b/src/heretic/mn_menu.c index 4d394db1..4db108cf 100644 --- a/src/heretic/mn_menu.c +++ b/src/heretic/mn_menu.c @@ -1046,6 +1046,9 @@ boolean MN_Responder(event_t * event) extern void G_CheckDemoStatus(void); char *textBuffer; + // In testcontrols mode, none of the function keys should do anything + // - the only key is escape to quit. + if (testcontrols) { if (event->type == ev_quit @@ -1056,6 +1059,8 @@ boolean MN_Responder(event_t * event) I_Quit(); return true; } + + return false; } // "close" button pressed on window? |