Browse Source

Fix backspace key in Rpi SSH keyboard

There was a typo in the generated keycode.
Matthijs Kooijman 1 month ago
parent
commit
9582d25217
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/platforms/rcore_drm.c

+ 1 - 1
src/platforms/rcore_drm.c

@@ -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