diff options
-rw-r--r-- | engines/sci/engine/script_patches.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index be9634452f..5f3370bad5 100644 --- a/engines/sci/engine/script_patches.cpp +++ b/engines/sci/engine/script_patches.cpp @@ -2197,14 +2197,14 @@ static const SciScriptPatcherEntry larry6Signatures[] = { // larger and so a debug message "y value less than vanishingY" is displayed. static const uint16 larry6HiresSignatureSetScale[] = { SIG_MAGICDWORD, - 0x38, SIG_UINT16(0x14b), // pushi 014b (setStyle) + 0x38, SIG_UINT16(0x14b), // pushi 014b (setScale) 0x38, SIG_UINT16(0x05), // pushi 0005 - 0x51, 0x2c, // class 2c (Styler) + 0x51, 0x2c, // class 2c (Scaler) SIG_END }; static const uint16 larry6HiresPatchSetScale[] = { - 0x38, SIG_UINT16(0x14f), // pushi 014f (setStyler) + 0x38, SIG_UINT16(0x14f), // pushi 014f (setScaler) PATCH_END }; |