From 06bd17ee712f06971273d526f389f9a352f3e8ec Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Sat, 30 Jan 2010 11:59:05 +0000 Subject: SCI: Remove extra '\n's in debugC messages svn-id: r47707 --- engines/sci/engine/kfile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/sci/engine/kfile.cpp') diff --git a/engines/sci/engine/kfile.cpp b/engines/sci/engine/kfile.cpp index 314135a443..214b810ca8 100644 --- a/engines/sci/engine/kfile.cpp +++ b/engines/sci/engine/kfile.cpp @@ -219,7 +219,7 @@ reg_t kFPuts(EngineState *s, int argc, reg_t *argv) { } static void fgets_wrapper(EngineState *s, char *dest, int maxsize, int handle) { - debugC(2, kDebugLevelFile, "FGets'ing %d bytes from handle %d\n", maxsize, handle); + debugC(2, kDebugLevelFile, "FGets'ing %d bytes from handle %d", maxsize, handle); FileHandle *f = getFileFromHandle(s, handle); if (!f) @@ -241,7 +241,7 @@ static void fgets_wrapper(EngineState *s, char *dest, int maxsize, int handle) { dest[strSize - 1] = 0; } - debugC(2, kDebugLevelFile, "FGets'ed \"%s\"\n", dest); + debugC(2, kDebugLevelFile, "FGets'ed \"%s\"", dest); } static int _savegame_index_struct_compare(const void *a, const void *b) { -- cgit v1.2.3