From c7c0246eb4ed67c5c1ca39193a393e24fd8ebdc2 Mon Sep 17 00:00:00 2001 From: Spoike Date: Sun, 3 Oct 2004 10:19:58 +0000 Subject: [PATCH] We don't block ctrl+esc any more... You should be able to use that with sys_disableWinKeys again. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@294 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/sys_win.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/engine/client/sys_win.c b/engine/client/sys_win.c index ca96c0421..93d2e8437 100644 --- a/engine/client/sys_win.c +++ b/engine/client/sys_win.c @@ -123,8 +123,9 @@ LRESULT CALLBACK LowLevelKeyboardProc (INT nCode, WPARAM wParam, LPARAM lParam) } // Disable CTRL+ESC - if (pkbhs->vkCode == VK_ESCAPE && GetAsyncKeyState (VK_CONTROL) >> ((sizeof(SHORT) * 8) - 1)) - return 1; + //this works, but we've got to give some way to tab out... +// if (pkbhs->vkCode == VK_ESCAPE && GetAsyncKeyState (VK_CONTROL) >> ((sizeof(SHORT) * 8) - 1)) +// return 1; // Disable ATL+TAB if (pkbhs->vkCode == VK_TAB && pkbhs->flags & LLKHF_ALTDOWN) return 1;