Use SDL for logging

This commit is contained in:
Alexander Batalov 2022-10-29 20:57:11 +03:00
parent 4821cab724
commit 3488833c2e
1 changed files with 2 additions and 11 deletions

View File

@ -5,10 +5,7 @@
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
#include <SDL.h>
#include "memory.h"
#include "platform_compat.h"
@ -148,13 +145,7 @@ int debugPrint(const char* format, ...)
rc = gDebugPrintProc(string);
} else {
#ifdef _DEBUG
char string[260];
vsprintf(string, format, args);
#ifdef _WIN32
OutputDebugStringA(string);
#else
printf("%s", string);
#endif
SDL_LogMessageV(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, format, args);
#endif
rc = -1;
}