From 277401e4d84c5e1f8e78ca0dd95a9bb939c575ee Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 9 Feb 2010 19:33:03 +0000 Subject: [PATCH] don't print mandatory \n in ideaslog --- desmume/src/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/debug.cpp b/desmume/src/debug.cpp index 610ca6bb0..1daaba928 100644 --- a/desmume/src/debug.cpp +++ b/desmume/src/debug.cpp @@ -222,6 +222,6 @@ void IdeasLog(armcpu_t* cpu) if(!c) break; printf("%c",c); } - printf("\n"); + //don't emit a newline. that is a pain in the butt. }