aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2007-04-01 17:13:45 +0000
committerMax Horn2007-04-01 17:13:45 +0000
commit852971cfe62b59ff1f2e7451402a34fa6f8db958 (patch)
tree4e30410fd954d3d731ffc92332b411181e260fd8
parent2447752a51ded9f6f70d392c8f572dd94eb5d65c (diff)
downloadscummvm-rg350-852971cfe62b59ff1f2e7451402a34fa6f8db958.tar.gz
scummvm-rg350-852971cfe62b59ff1f2e7451402a34fa6f8db958.tar.bz2
scummvm-rg350-852971cfe62b59ff1f2e7451402a34fa6f8db958.zip
Fixed a compiler warning about 'unknown conversion type character' (not sure if the statement was meant this way or another, but at least for now I can again compile with -Werror)
svn-id: r26356
-rw-r--r--engines/sky/compact.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sky/compact.cpp b/engines/sky/compact.cpp
index c3ba425c37..4869e7d283 100644
--- a/engines/sky/compact.cpp
+++ b/engines/sky/compact.cpp
@@ -267,7 +267,7 @@ Compact *SkyCompact::fetchCpt(uint16 cptId) {
assert(((cptId >> 12) < _numDataLists) && ((cptId & 0xFFF) < _dataListLen[cptId >> 12]));
if (gDebugLevel >= 8) {
- debug(8, "Loading Compact %s [%s] (%04=%d,%d)", _cptNames[cptId >> 12][cptId & 0xFFF], nameForType(_cptTypes[cptId >> 12][cptId & 0xFFF]), cptId >> 12, cptId & 0xFFF);
+ debug(8, "Loading Compact %s [%s] (%04d,%d)", _cptNames[cptId >> 12][cptId & 0xFFF], nameForType(_cptTypes[cptId >> 12][cptId & 0xFFF]), cptId >> 12, cptId & 0xFFF);
}
return _compacts[cptId >> 12][cptId & 0xFFF];