mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 23:53:52 +00:00
Bugfix #732 part 2
This commit is contained in:
parent
57f22c77c0
commit
517dfb4d75
1 changed files with 2 additions and 2 deletions
|
@ -917,8 +917,8 @@ namespace MWInput
|
|||
void InputManager::keyBindingDetected(ICS::InputControlSystem* ICS, ICS::Control* control
|
||||
, OIS::KeyCode key, ICS::Control::ControlChangingDirection direction)
|
||||
{
|
||||
//Disallow binding escape key
|
||||
if(key==OIS::KC_ESCAPE)
|
||||
//Disallow binding escape key, and unassigned keys
|
||||
if(key==OIS::KC_ESCAPE || key==OIS::KC_UNASSIGNED)
|
||||
return
|
||||
|
||||
clearAllBindings(control);
|
||||
|
|
Loading…
Reference in a new issue