Remove panic quit button

This commit is contained in:
def 2020-08-26 14:39:37 +02:00
parent 1a20f9a6ae
commit df82d24ffc

View file

@ -3027,7 +3027,6 @@ void CClient::Run()
RequestDDNetInfo(); RequestDDNetInfo();
bool LastD = false; bool LastD = false;
bool LastQ = false;
bool LastE = false; bool LastE = false;
bool LastG = false; bool LastG = false;
@ -3108,13 +3107,6 @@ void CClient::Run()
// update sound // update sound
Sound()->Update(); Sound()->Update();
// panic quit button
if(CtrlShiftKey(KEY_Q, LastQ))
{
Quit();
break;
}
if(CtrlShiftKey(KEY_D, LastD)) if(CtrlShiftKey(KEY_D, LastD))
g_Config.m_Debug ^= 1; g_Config.m_Debug ^= 1;