From 19e54dc1ad6c425cb0ed28e53de1aa9e0e73c22f Mon Sep 17 00:00:00 2001 From: terminx Date: Mon, 8 Jul 2019 00:41:12 +0000 Subject: [PATCH] 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 --- source/duke3d/src/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/duke3d/src/game.cpp b/source/duke3d/src/game.cpp index 4429dcd8c..78cb42c8d 100644 --- a/source/duke3d/src/game.cpp +++ b/source/duke3d/src/game.cpp @@ -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.");