mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Stop trying to make CTRL-ALT-DEL happen
It's not going to happen. git-svn-id: https://svn.eduke32.com/eduke32@7774 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
027afc2347
commit
19e54dc1ad
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ void G_HandleSpecialKeys(void)
|
|||
if ((myplayer.gm & MODE_GAME) != MODE_GAME)
|
||||
OSD_DispatchQueued();
|
||||
|
||||
if (g_quickExit == 0 && KB_KeyPressed(sc_LeftControl) && KB_KeyPressed(sc_LeftAlt) && (KB_KeyPressed(sc_Delete)||KB_KeyPressed(sc_End)))
|
||||
if (g_quickExit == 0 && KB_KeyPressed(sc_LeftControl) && KB_KeyPressed(sc_LeftAlt) && KB_KeyPressed(sc_End))
|
||||
{
|
||||
g_quickExit = 1;
|
||||
G_GameExit("Quick Exit.");
|
||||
|
|
Loading…
Reference in a new issue