Changed debug message on unknown opcode to a warning.

svn-id: r25263
This commit is contained in:
Johannes Schickel 2007-01-29 20:23:27 +00:00
parent 10a3eebe5a
commit 5bf2396dd8

View File

@ -385,9 +385,9 @@ void Sprites::updateSceneAnims() {
data += 2;
break;
default:
debugC(1, kDebugLevelSprites, "Unsupported anim command %X in script %i", READ_LE_UINT16(data), i);
warning("Unsupported anim command %X in script %i", READ_LE_UINT16(data), i);
//endLoop = true;
data += 1;
data += 2;
break;
}
}