Add newline character to debug output

Current issue: m_windowHandle is not being set, at least not correctly. Not sure why, requires further investigation.
This commit is contained in:
VoxelTek 2025-08-08 12:51:37 +10:00
parent f5d38d1dbb
commit 9579476b38

View File

@ -3,5 +3,5 @@
void my_output(void *userdata, int category, SDL_LogPriority priority, const char *message) { void my_output(void *userdata, int category, SDL_LogPriority priority, const char *message) {
DbgPrint("%s", message); DbgPrint("%s\n", message);
} }