aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorColin Snover2016-10-27 14:32:38 -0500
committerColin Snover2016-10-27 14:37:13 -0500
commit8ba899b46be702b5a079f26011df147c18fe8222 (patch)
tree10badb6b182efdd9725c92b033612c7b7bb922d4 /engines/sci
parent7de9f4e6d865b5a2c771a232a18bff13d960554e (diff)
downloadscummvm-rg350-8ba899b46be702b5a079f26011df147c18fe8222.tar.gz
scummvm-rg350-8ba899b46be702b5a079f26011df147c18fe8222.tar.bz2
scummvm-rg350-8ba899b46be702b5a079f26011df147c18fe8222.zip
SCI32: Fix typos
Thanks @OmerMor.
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/engine/script_patches.cpp6
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
};