diff options
| author | Torbjörn Andersson | 2003-06-14 08:58:56 +0000 |
|---|---|---|
| committer | Torbjörn Andersson | 2003-06-14 08:58:56 +0000 |
| commit | 54453b64bf83cce0f1753c40045a917f118e00c1 (patch) | |
| tree | e0609c9410c5290f16e8eaf75792f70a94859972 /scumm/object.cpp | |
| parent | c1880ad5224f6d3e0245b5c44ba2128ea816b68d (diff) | |
| download | scummvm-rg350-54453b64bf83cce0f1753c40045a917f118e00c1.tar.gz scummvm-rg350-54453b64bf83cce0f1753c40045a917f118e00c1.tar.bz2 scummvm-rg350-54453b64bf83cce0f1753c40045a917f118e00c1.zip | |
Format string/argument mismatch fix.
svn-id: r8464
Diffstat (limited to 'scumm/object.cpp')
| -rw-r--r-- | scumm/object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/object.cpp b/scumm/object.cpp index 6fb5f56172..4bbdf05769 100644 --- a/scumm/object.cpp +++ b/scumm/object.cpp @@ -895,7 +895,7 @@ const byte *Scumm::getObjOrActorName(int obj) { if (_version >= 6) { for (i = 0; i < _numNewNames; i++) { if (_newNames[i] == obj) { - debug(5, "Found new name for object %d at _newNames[i]", obj, i); + debug(5, "Found new name for object %d at _newNames[%d]", obj, i); return getResourceAddress(rtObjectName, i); break; } |
