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/kstring.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/kstring.cpp')
| -rw-r--r-- | engines/sci/engine/kstring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kstring.cpp b/engines/sci/engine/kstring.cpp index f4c264b72c..dad3727f32 100644 --- a/engines/sci/engine/kstring.cpp +++ b/engines/sci/engine/kstring.cpp @@ -214,7 +214,7 @@ reg_t kFormat(EngineState *s, int argc, reg_t *argv) { Common::String source_str = kernel_lookup_text(s, position, index); const char* source = source_str.c_str(); - debugC(2, kDebugLevelStrings, "Formatting \"%s\"\n", source); + debugC(2, kDebugLevelStrings, "Formatting \"%s\"", source); arguments = (uint16 *)malloc(sizeof(uint16) * argc); |
