diff options
| author | raysan5 <raysan5@gmail.com> | 2015-09-02 01:08:41 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2015-09-02 01:08:41 +0200 |
| commit | 4879106096c868e5c8f16ca3796dcb9c85c0dac6 (patch) | |
| tree | 48bd97f71bef414866151e0dec1a96827005b6ff /src/core.c | |
| parent | e28fef6ee0a1a35171e27cde6bbfd7bc4025dc4a (diff) | |
| download | raylib-4879106096c868e5c8f16ca3796dcb9c85c0dac6.tar.gz raylib-4879106096c868e5c8f16ca3796dcb9c85c0dac6.zip | |
Reviewed to work on Raspberry Pi
[rlgl] Extensions strings loading was redone to avoid a Segmentation
Fault on Raspberry Pi
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |
