SCI: Changed the warning when applying script patches into a debug output call

svn-id: r55837
This commit is contained in:
Filippos Karapetis 2011-02-08 23:07:11 +00:00
parent 9cf8d4d548
commit 93d22c21b5

View File

@ -1256,7 +1256,7 @@ void Script::matchSignatureAndPatch(uint16 scriptNr, byte *scriptData, const uin
foundOffset = findSignature(signatureTable, scriptData, scriptSize);
if (foundOffset != -1) {
// found, so apply the patch
warning("matched and patched %s on script %d offset %d", signatureTable->description, scriptNr, foundOffset);
debugC(kDebugLevelScripts, "matched and patched %s on script %d offset %d", signatureTable->description, scriptNr, foundOffset);
applyPatch(signatureTable->patch, scriptData, scriptSize, foundOffset);
}
applyCount--;