Browse Source

Merge pull request #5104 from matthijskooijman/fix-ssh-backspace

Fix backspace key in Rpi SSH keyboard
pull/5108/head
Ray 2 months ago
committed by GitHub
parent
commit
e17e0933af
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/platforms/rcore_drm.c

+ 1
- 1
src/platforms/rcore_drm.c 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

Loading…
Cancel
Save