mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-15 07:48:15 +00:00
Reviewed to work on Raspberry Pi
[rlgl] Extensions strings loading was redone to avoid a Segmentation Fault on Raspberry Pi
This commit is contained in:
@@ -1627,7 +1627,7 @@ static void PollInputEvents(void)
|
||||
else if (key == 0x7f) currentKeyState[259] = 1;
|
||||
else
|
||||
{
|
||||
TraceLog(INFO, "Pressed key (ASCII): 0x%02x", key);
|
||||
TraceLog(DEBUG, "Pressed key (ASCII): 0x%02x", key);
|
||||
|
||||
currentKeyState[key] = 1;
|
||||
}
|
||||
@@ -1637,7 +1637,7 @@ static void PollInputEvents(void)
|
||||
}
|
||||
else if (keyboardMode == 1)
|
||||
{
|
||||
TraceLog(INFO, "Pressed key (keycode): 0x%02x", key);
|
||||
TraceLog(DEBUG, "Pressed key (keycode): 0x%02x", key);
|
||||
|
||||
int asciiKey = -1;
|
||||
|
||||
|
Reference in New Issue
Block a user