diff options
author | Willem Jan Palenstijn | 2010-01-30 11:59:05 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2010-01-30 11:59:05 +0000 |
commit | 06bd17ee712f06971273d526f389f9a352f3e8ec (patch) | |
tree | 6396a8c4bdc706116532c555bd936c048a0b65c1 /engines/sci/engine/kfile.cpp | |
parent | 9449585893e72156579707f0f377527c6253be5f (diff) | |
download | scummvm-rg350-06bd17ee712f06971273d526f389f9a352f3e8ec.tar.gz scummvm-rg350-06bd17ee712f06971273d526f389f9a352f3e8ec.tar.bz2 scummvm-rg350-06bd17ee712f06971273d526f389f9a352f3e8ec.zip |
SCI: Remove extra '\n's in debugC messages
svn-id: r47707
Diffstat (limited to 'engines/sci/engine/kfile.cpp')
-rw-r--r-- | engines/sci/engine/kfile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |