aboutsummaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2015-09-02 01:08:41 +0200
committerraysan5 <raysan5@gmail.com>2015-09-02 01:08:41 +0200
commit4879106096c868e5c8f16ca3796dcb9c85c0dac6 (patch)
tree48bd97f71bef414866151e0dec1a96827005b6ff /src/core.c
parente28fef6ee0a1a35171e27cde6bbfd7bc4025dc4a (diff)
downloadraylib-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.c b/src/core.c
index 1ebc8a8f..7f2a1b22 100644
--- a/src/core.c
+++ b/src/core.c
@@ -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;