From 4bcec5c6fa16e4f965081a87413db44ebc0ef527 Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Mon, 23 Dec 2024 22:29:02 +0100 Subject: [PATCH] Fix _MxTrace --- LEGO1/omni/src/common/mxdebug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/omni/src/common/mxdebug.cpp b/LEGO1/omni/src/common/mxdebug.cpp index e553bb0d..04887748 100644 --- a/LEGO1/omni/src/common/mxdebug.cpp +++ b/LEGO1/omni/src/common/mxdebug.cpp @@ -21,7 +21,7 @@ void _MxTrace(const char* format, ...) va_list args; va_start(args, format); - SDL_LogMessageV(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_CATEGORY_DEBUG, SDL_LOG_PRIORITY_TRACE, format, args); + SDL_LogMessageV(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, SDL_LOG_PRIORITY_TRACE, format, args); va_end(args); }