From 9579476b3819757f935fa97c4774be1ba4a3e6e2 Mon Sep 17 00:00:00 2001 From: VoxelTek <53562267+VoxelTek@users.noreply.github.com> Date: Fri, 8 Aug 2025 12:51:37 +1000 Subject: [PATCH] Add newline character to debug output Current issue: m_windowHandle is not being set, at least not correctly. Not sure why, requires further investigation. --- ISLE/xbox/dbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ISLE/xbox/dbg.c b/ISLE/xbox/dbg.c index 511b541d..987ab2aa 100644 --- a/ISLE/xbox/dbg.c +++ b/ISLE/xbox/dbg.c @@ -3,5 +3,5 @@ void my_output(void *userdata, int category, SDL_LogPriority priority, const char *message) { - DbgPrint("%s", message); + DbgPrint("%s\n", message); }