summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-06-02 23:07:42 +0200
committerraysan5 <[email protected]>2020-06-02 23:07:42 +0200
commita4333035c7c3993c3da5f50e3859d40db853dd20 (patch)
treed04402d1ca71ed9b50f69c7fc3b97b892cb5c482 /src/core.c
parentb00ab118c6a86713042ebc172a7108682a268a03 (diff)
downloadraylib-a4333035c7c3993c3da5f50e3859d40db853dd20.tar.gz
raylib-a4333035c7c3993c3da5f50e3859d40db853dd20.zip
Use TRACELOG() macro instead of TraceLog() function
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core.c b/src/core.c
index e54c5559..c50cd559 100644
--- a/src/core.c
+++ b/src/core.c
@@ -969,11 +969,11 @@ void ToggleFullscreen(void)
emscripten_request_fullscreen("#canvas", false);
//emscripten_request_fullscreen_strategy("#canvas", EM_FALSE, &strategy);
//emscripten_enter_soft_fullscreen("canvas", &strategy);
- TraceLog(LOG_INFO, "emscripten_request_fullscreen_strategy");
+ TRACELOG(LOG_INFO, "emscripten_request_fullscreen_strategy");
}
else
{
- TraceLog(LOG_INFO, "emscripten_exit_fullscreen");
+ TRACELOG(LOG_INFO, "emscripten_exit_fullscreen");
emscripten_exit_fullscreen();
}
*/
@@ -4350,7 +4350,7 @@ static EM_BOOL EmscriptenKeyboardCallback(int eventType, const EmscriptenKeyboar
emscripten_exit_pointerlock();
CORE.Window.fullscreen = false;
- TraceLog(LOG_INFO, "CORE.Window.fullscreen = %s", CORE.Window.fullscreen? "true" : "false");
+ TRACELOG(LOG_INFO, "CORE.Window.fullscreen = %s", CORE.Window.fullscreen? "true" : "false");
}
return 0;