From 93d22c21b58685a7044bcedefcd174c68f02e2a1 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Tue, 8 Feb 2011 23:07:11 +0000 Subject: SCI: Changed the warning when applying script patches into a debug output call svn-id: r55837 --- engines/sci/engine/script_patches.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index 8d9c78ad56..5191887e47 100644 --- a/engines/sci/engine/script_patches.cpp +++ b/engines/sci/engine/script_patches.cpp @@ -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--; -- cgit v1.2.3