aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/text.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-08-16 12:14:20 +0200
committerBorja Lorente2016-08-19 16:30:24 +0200
commit34fdec37b26c7328f07f6251263f1c1afc7d1629 (patch)
treeb01e2602bd2121d1dd15ebc2427123acf65cbcef /engines/macventure/text.cpp
parentf928deebaf09e9498da9658f36bf318d67660733 (diff)
downloadscummvm-rg350-34fdec37b26c7328f07f6251263f1c1afc7d1629.tar.gz
scummvm-rg350-34fdec37b26c7328f07f6251263f1c1afc7d1629.tar.bz2
scummvm-rg350-34fdec37b26c7328f07f6251263f1c1afc7d1629.zip
MACVENTURE: Fix debug messages
Diffstat (limited to 'engines/macventure/text.cpp')
-rw-r--r--engines/macventure/text.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/macventure/text.cpp b/engines/macventure/text.cpp
index 095b0f3332..5a2d029714 100644
--- a/engines/macventure/text.cpp
+++ b/engines/macventure/text.cpp
@@ -99,7 +99,7 @@ void TextAsset::decodeOld() {
}
str[strLen] = '\0';
- debugC(3, kMVDebugText, "Decoded %d string (old): %s", _id, str);
+ debugC(3, kMVDebugText, "Decoded string [%d] (old encoding): %s", _id, str);
_decoded = Common::String(str);
}
@@ -162,7 +162,7 @@ void TextAsset::decodeHuffman() {
}
}
_decoded += '\0';
- debugC(4, kMVDebugText, "Decoded %d'th string (new): %s", _id, _decoded.c_str());
+ debugC(3, kMVDebugText, "Decoded string [%d] (new encoding): %s", _id, _decoded.c_str());
}
Common::String TextAsset::getNoun(ObjID subval) {
ObjID obj;