ソースを参照
Merge pull request #5104 from matthijskooijman/fix-ssh-backspace
Fix backspace key in Rpi SSH keyboard
pull/5108/head
Ray
2ヶ月前
committed by
GitHub
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: B5690EEEBB952194
-
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 |
|
|
|