Added catch for when rand() sticks
[tpg/acess2.git] / Kernel / drv / kb.c
index eeb1f99..2e07aef 100644 (file)
@@ -142,10 +142,10 @@ void KB_IRQHandler()
        // Ignore Non-Printable Characters
        if(ch == 0 || ch & 0x80)                return;
        
-       
        // --- Check for Kernel Magic Combos
-       if(gbaKB_States[KEY_LCTRL] && gbaKB_States[KEY_LALT])
+       if(gbaKB_States[KEY_LCTRL])// && gbaKB_States[KEY_LALT])
        {
+               LOG("ch = 0x%02x", ch);
                switch(ch)
                {
                case 'd':       __asm__ __volatile__ ("xchg %bx, %bx"); break;

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