mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
- Fixed: Keys bound to "screenshot" did not work during the finale (aka intermission) sequences.
SVN r3470 (trunk)
This commit is contained in:
parent
9fcc6ebc89
commit
5f23a972f3
1 changed files with 5 additions and 1 deletions
|
@ -765,8 +765,12 @@ bool DIntermissionController::Responder (event_t *ev)
|
|||
{
|
||||
const char *cmd = Bindings.GetBind (ev->data1);
|
||||
|
||||
if (cmd != NULL && !stricmp (cmd, "toggleconsole"))
|
||||
if (cmd != NULL &&
|
||||
(!stricmp(cmd, "toggleconsole") ||
|
||||
!stricmp(cmd, "screenshot")))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (mScreen->mTicker < 2) return false; // prevent some leftover events from auto-advancing
|
||||
|
|
Loading…
Reference in a new issue