X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Usermode%2FApplications%2Faxwin3_src%2FWM%2Fwm_hotkeys.c;fp=Usermode%2FApplications%2Faxwin3_src%2FWM%2Fwm_hotkeys.c;h=bdea09c58af1676adc63572425aa04e4f6fc0ae5;hb=aef17273fb9670ec36893e2d060fcb45c654e356;hp=c8eab69791cff3760b9f94bfd3cbdea0aa56fd02;hpb=2ed87550e460e114be71b4a80b3ab00ef96d1665;p=tpg%2Facess2.git 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)); }