diff options
| author | raysan5 <[email protected]> | 2020-06-02 23:07:42 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-06-02 23:07:42 +0200 |
| commit | a4333035c7c3993c3da5f50e3859d40db853dd20 (patch) | |
| tree | d04402d1ca71ed9b50f69c7fc3b97b892cb5c482 | |
| parent | b00ab118c6a86713042ebc172a7108682a268a03 (diff) | |
| download | raylib-a4333035c7c3993c3da5f50e3859d40db853dd20.tar.gz raylib-a4333035c7c3993c3da5f50e3859d40db853dd20.zip | |
Use TRACELOG() macro instead of TraceLog() function
| -rw-r--r-- | src/core.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |
