mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Fixed: Controller buttons were still translated to menu buttons when the controls menu was
waiting for a button press, making it impossible to bind buttons that have special meaning to the menu from the menu. SVN r2967 (trunk)
This commit is contained in:
parent
b0c7ac6868
commit
1287c9419a
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ bool M_Responder (event_t *ev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (ev->type == EV_KeyDown || ev->type == EV_KeyUp)
|
else if (menuactive != MENU_WaitKey && (ev->type == EV_KeyDown || ev->type == EV_KeyUp))
|
||||||
{
|
{
|
||||||
keyup = ev->type == EV_KeyUp;
|
keyup = ev->type == EV_KeyUp;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue