- 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:
Randy Heit 2010-10-24 17:46:48 +00:00
parent b0c7ac6868
commit 1287c9419a
1 changed files with 1 additions and 1 deletions

View File

@ -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;