From aef17273fb9670ec36893e2d060fcb45c654e356 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Tue, 31 Jul 2012 21:01:37 +0800 Subject: [PATCH] Usermode/AxWin3 - Misc commenting removal --- Usermode/Applications/axwin3_src/WM/wm_hotkeys.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Usermode/Applications/axwin3_src/WM/wm_hotkeys.c b/Usermode/Applications/axwin3_src/WM/wm_hotkeys.c index c8eab697..bdea09c5 100644 --- a/Usermode/Applications/axwin3_src/WM/wm_hotkeys.c +++ b/Usermode/Applications/axwin3_src/WM/wm_hotkeys.c @@ -116,7 +116,7 @@ void WM_Hotkey_KeyUp(uint32_t Scancode) void WM_Hotkey_FireEvent(const char *Target) { - _SysDebug("WM_Hotkey_FireEvent: (%s)", Target); +// _SysDebug("WM_Hotkey_FireEvent: (%s)", Target); // - Internal events (Alt-Tab, Close, Maximize, etc...) // TODO: Internal event handling @@ -142,13 +142,13 @@ void WM_Hotkey_FireEvent(const char *Target) static void _SetKey(uint32_t sc) { - _SysDebug("_SetKey: (%x)", sc); +// _SysDebug("_SetKey: (%x)", sc); if( sc >= MAX_STATE_SCANCODE ) return; gWM_KeyStates[sc/8] |= 1 << (sc % 8); } static void _UnsetKey(uint32_t sc) { - _SysDebug("_UnsetKey: (%x)", sc); +// _SysDebug("_UnsetKey: (%x)", sc); if( sc >= MAX_STATE_SCANCODE ) return; gWM_KeyStates[sc/8] &= ~(1 << (sc % 8)); } -- 2.20.1