Fix backspace key in Rpi SSH keyboard

There was a typo in the generated keycode.
This commit is contained in:
Matthijs Kooijman
2025-08-09 12:39:42 +02:00
parent 852c51343d
commit 9582d25217

View File

@@ -1556,7 +1556,7 @@ static void ProcessKeyboard(void)
{
CORE.Input.Keyboard.currentKeyState[259] = 1;
CORE.Input.Keyboard.keyPressedQueue[CORE.Input.Keyboard.keyPressedQueueCount] = 257; // Add keys pressed into queue
CORE.Input.Keyboard.keyPressedQueue[CORE.Input.Keyboard.keyPressedQueueCount] = 259; // Add keys pressed into queue
CORE.Input.Keyboard.keyPressedQueueCount++;
}
else