Usermode/AxWin3 - Misc commenting removal
authorJohn Hodge <[email protected]>
Tue, 31 Jul 2012 13:01:37 +0000 (21:01 +0800)
committerJohn Hodge <[email protected]>
Tue, 31 Jul 2012 13:01:37 +0000 (21:01 +0800)
Usermode/Applications/axwin3_src/WM/wm_hotkeys.c

index c8eab69..bdea09c 100644 (file)
@@ -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));
 }

UCC git Repository :: git.ucc.asn.au