diff options
author | Johannes Schickel | 2009-07-09 15:59:20 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-07-09 15:59:20 +0000 |
commit | 0aa83f14c760ae790b738e5957fb8c3d9930697f (patch) | |
tree | 1241975acf6590d7c2c24c9c528af6bd85102e8f /engines/sci | |
parent | 717de7800c9bd6b822d56771393beec42f3bc1bb (diff) | |
download | scummvm-rg350-0aa83f14c760ae790b738e5957fb8c3d9930697f.tar.gz scummvm-rg350-0aa83f14c760ae790b738e5957fb8c3d9930697f.tar.bz2 scummvm-rg350-0aa83f14c760ae790b738e5957fb8c3d9930697f.zip |
Fix wrong format arugment.
svn-id: r42301
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index a1d7fa7a41..9d791f615c 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -988,7 +988,7 @@ int ResourceManager::readResourceMapSCI0(ResourceSource *map) { res->id = resId; res->source = getVolume(map, offset >> bShift); if (!res->source) { - warning("Could not get volume for resource %d, VolumeID %d\n", resId, offset >> bShift); + warning("Could not get volume for resource %d, VolumeID %d\n", id, offset >> bShift); } _resMap.setVal(resId, res); } |