mirror of
https://github.com/limine-bootloader/limine
synced 2025-02-08 05:04:14 +03:00
lib/getchar: Only apply EFI serial backspace workaround if serial == true
This commit is contained in:
parent
ca77c0002a
commit
7e49a328d7
@ -310,7 +310,7 @@ again:
|
||||
kd.KeyState.KeyShiftState = 0;
|
||||
}
|
||||
|
||||
if (kd.Key.ScanCode == 0x08) {
|
||||
if (serial == true && kd.Key.ScanCode == 0x08) {
|
||||
return '\b';
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user