aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/input/ps2/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/input/ps2/keyboard.c')
-rw-r--r--src/kernel/input/ps2/keyboard.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/kernel/input/ps2/keyboard.c b/src/kernel/input/ps2/keyboard.c
index bafecd5..4cbbf04 100644
--- a/src/kernel/input/ps2/keyboard.c
+++ b/src/kernel/input/ps2/keyboard.c
@@ -4,8 +4,6 @@
#include <kernel/input/input.h>
#include <kernel/lib/stdlib/liballoc.h>
#include <kernel/lib/string.h>
-#include <kernel/paging/paging.h>
-#include <kernel/lib/lib.h>
int shift_pressed;
int control_pressed;
@@ -109,7 +107,7 @@ void keyboard_handler(struct regs *r)
keyboard_char_buffer = current_keymap[scan_code];
keyboard_buffer[strlen(keyboard_buffer)] = keyboard_char_buffer;
} else { // RELEASE
- if (current_keymap[scan_code] == -107) // TODO: IDK WHY -107?!
+ if (current_keymap[scan_code] == (int) 0xffffffb5) // TODO: IDK WHY -107?!
control_pressed = 0;
}
}