Format string/argument mismatch fix.

svn-id: r8464
This commit is contained in:
Torbjörn Andersson 2003-06-14 08:58:56 +00:00
parent c1880ad522
commit 54453b64bf
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -274,7 +274,7 @@ void Scumm::CHARSET_1() {
_charset->setColor(color);
break;
case 13:
warning("CHARSET_1: Unknown opcode 13\n", READ_LE_UINT16(buffer));
warning("CHARSET_1: Unknown opcode 13 %d\n", READ_LE_UINT16(buffer));
buffer += 2;
break;
case 14: {