From 613569a2ab418e81af6982f5ccfd1e804b4291d2 Mon Sep 17 00:00:00 2001 From: RSDuck Date: Tue, 2 Jul 2024 19:09:32 +0200 Subject: [PATCH] append newline to nocash logging makes behaviour consistent with no$gba --- src/NDS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NDS.cpp b/src/NDS.cpp index 031abbb5..7ef6602c 100644 --- a/src/NDS.cpp +++ b/src/NDS.cpp @@ -1541,7 +1541,7 @@ void NDS::NocashPrint(u32 ncpu, u32 addr) } output[ptr] = '\0'; - Log(LogLevel::Debug, "%s", output); + Log(LogLevel::Debug, "%s\n", output); } void NDS::MonitorARM9Jump(u32 addr)