Usermode/libc - Fix strchr and strrchr behavior
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / wm_hotkeys.c
index 2a93b54..e18f44c 100644 (file)
@@ -41,9 +41,7 @@ void WM_Hotkey_Register(int nKeys, uint32_t *Keys, const char *ActionName)
        strcpy((char*)h->Target, ActionName);
        memcpy(h->Keys, Keys, nKeys * sizeof(uint32_t));
        
-       h->Next = NULL;
-       if( gpWM_Hotkeys )
-               gpWM_Hotkeys->Next = h;
+       h->Next = gpWM_Hotkeys;
        gpWM_Hotkeys = h;
 }
 
@@ -102,7 +100,7 @@ void WM_Hotkey_KeyUp(uint32_t Scancode)
                        if( _IsKeySet(hk->Keys[i]) )    continue ;
                        break;
                }
-               _SysDebug("%i/%i satisfied for %s", i, hk->nKeys, hk->Target);
+               //_SysDebug("%i/%i satisfied for %s", i, hk->nKeys, hk->Target);
                if( i != hk->nKeys )
                        continue ;
                

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