diff options
author | Simon Howard | 2013-08-17 21:34:17 +0000 |
---|---|---|
committer | Simon Howard | 2013-08-17 21:34:17 +0000 |
commit | 7f27444e2e93702fbd23dedc0fb7e7b4f3e13e50 (patch) | |
tree | 8dd7bff370d6323176691c362eceb6338b1aaebd /src/strife | |
parent | 1e0abaad4f8249eab598ce69f8f8c2fa261d7733 (diff) | |
download | chocolate-doom-7f27444e2e93702fbd23dedc0fb7e7b4f3e13e50.tar.gz chocolate-doom-7f27444e2e93702fbd23dedc0fb7e7b4f3e13e50.tar.bz2 chocolate-doom-7f27444e2e93702fbd23dedc0fb7e7b4f3e13e50.zip |
Fix Chocolate Doom/Strife to emulate weird Vanilla behavior when the
pause key is pressed in a menu with a scroll-bar (thanks Alexandre
Xavier).
Subversion-branch: /branches/v2-branch
Subversion-revision: 2620
Diffstat (limited to 'src/strife')
-rw-r--r-- | src/strife/m_menu.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/strife/m_menu.c b/src/strife/m_menu.c index a4d1b0a7..61d0bd58 100644 --- a/src/strife/m_menu.c +++ b/src/strife/m_menu.c @@ -2180,7 +2180,12 @@ boolean M_Responder (event_t* ev) } return true; } - else if (ch != 0) + + // Keyboard shortcut? + // Vanilla Strife has a weird behavior where it jumps to the scroll bars + // when the pause key is pressed, so emulate this. + + else if (ch != 0 || key == KEY_PAUSE) { // Keyboard shortcut? |