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:
raysan5 2015-09-02 01:08:41 +02:00
parent e28fef6ee0
commit 4879106096
6 changed files with 94 additions and 118 deletions

View file

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