Removed the requirement to have the Freelook option enabled for the freelook hotkeys to work.

This commit is contained in:
skidau 2015-02-28 16:40:24 +11:00
parent d080632527
commit d2abbcd353
1 changed files with 21 additions and 24 deletions

View File

@ -1440,8 +1440,6 @@ void CFrame::ParseHotkeys(wxKeyEvent &event)
OnConnectWiimote(evt);
}
if (g_Config.bFreeLook)
{
static float debugSpeed = 1.0f;
if (IsHotkey(event, HK_FREELOOK_DECREASE_SPEED))
@ -1465,5 +1463,4 @@ void CFrame::ParseHotkeys(wxKeyEvent &event)
else if (IsHotkey(event, HK_FREELOOK_RESET))
VertexShaderManager::ResetView();
}
}
}