aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/segment.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-06-14 13:41:06 +0000
committerFilippos Karapetis2010-06-14 13:41:06 +0000
commit5230930d9577726d6f64fa8ffa73690314fd0a56 (patch)
tree0efdb1913450578de3053eea9495daa4d347bbec /engines/sci/engine/segment.cpp
parent2a78b8279930212337c446948cc9a2943d685c94 (diff)
downloadscummvm-rg350-5230930d9577726d6f64fa8ffa73690314fd0a56.tar.gz
scummvm-rg350-5230930d9577726d6f64fa8ffa73690314fd0a56.tar.bz2
scummvm-rg350-5230930d9577726d6f64fa8ffa73690314fd0a56.zip
Silenced warning
svn-id: r49651
Diffstat (limited to 'engines/sci/engine/segment.cpp')
-rw-r--r--engines/sci/engine/segment.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/segment.cpp b/engines/sci/engine/segment.cpp
index c5afe57eea..99fcb1b821 100644
--- a/engines/sci/engine/segment.cpp
+++ b/engines/sci/engine/segment.cpp
@@ -226,7 +226,7 @@ void Script::load(ResourceManager *resMan) {
_localsOffset = 0;
if (_localsOffset + _localsCount * 2 + 1 >= (int)_bufSize) {
- warning("Locals extend beyond end of script: offset %04x, count %x vs size %x", _localsOffset, _localsCount, _bufSize);
+ warning("Locals extend beyond end of script: offset %04x, count %d vs size %d", _localsOffset, _localsCount, _bufSize);
_localsCount = (_bufSize - _localsOffset) >> 1;
}
} else {