aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorVhati2019-01-26 02:19:56 -0500
committerFilippos Karapetis2019-02-03 10:49:48 +0200
commit2207a6d326b645bd4e0982f6b0cb6176797b69f6 (patch)
tree38ec368be8acb00155d459e7a71907c01ef935b6 /engines/sci
parent88fffbfcccc575c07c3f906e816d6d5fe4e1cd31 (diff)
downloadscummvm-rg350-2207a6d326b645bd4e0982f6b0cb6176797b69f6.tar.gz
scummvm-rg350-2207a6d326b645bd4e0982f6b0cb6176797b69f6.tar.bz2
scummvm-rg350-2207a6d326b645bd4e0982f6b0cb6176797b69f6.zip
SCI: Cleanup Hoyle patches
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 73449229e7..4d941af938 100644
--- a/engines/sci/engine/script_patches.cpp
+++ b/engines/sci/engine/script_patches.cpp
@@ -952,14 +952,14 @@ static const uint16 hoyle5PatchSpinLoop[] = {
// This is the same issue as with LSL6 hires.
static const uint16 hoyle5SetScaleSignature[] = {
SIG_MAGICDWORD,
- 0x38, SIG_SELECTOR16(setScale), // pushi $14b (setScale)
+ 0x38, SIG_SELECTOR16(setScale), // pushi setScale ($14b)
0x38, SIG_UINT16(0x05), // pushi 5
- 0x51, 0x2c, // class 2c (Scaler)
+ 0x51, 0x2c, // class Scaler
SIG_END
};
static const uint16 hoyle5PatchSetScale[] = {
- 0x38, PATCH_SELECTOR16(setScaler), // pushi $14f (setScaler)
+ 0x38, PATCH_SELECTOR16(setScaler), // pushi setScaler ($14f)
PATCH_END
};