Allow both F11 and F12 for stats

1008-fix
MrSimbax 2018-07-25 23:45:15 +02:00
parent cb701cacb8
commit 7e19622b85
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ bool CEngine::ProcessEvent(const Event &event)
{
auto data = event.GetData<KeyEventData>();
if (data->key == KEY(F11))
if (data->key == KEY(F11) || data->key == KEY(F12))
{
m_showStats = !m_showStats;
return false;