diff options
author | Filippos Karapetis | 2010-06-14 13:41:06 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-06-14 13:41:06 +0000 |
commit | 5230930d9577726d6f64fa8ffa73690314fd0a56 (patch) | |
tree | 0efdb1913450578de3053eea9495daa4d347bbec | |
parent | 2a78b8279930212337c446948cc9a2943d685c94 (diff) | |
download | scummvm-rg350-5230930d9577726d6f64fa8ffa73690314fd0a56.tar.gz scummvm-rg350-5230930d9577726d6f64fa8ffa73690314fd0a56.tar.bz2 scummvm-rg350-5230930d9577726d6f64fa8ffa73690314fd0a56.zip |
Silenced warning
svn-id: r49651
-rw-r--r-- | engines/sci/engine/segment.cpp | 2 |
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 { |