diff options
author | Vhati | 2019-01-26 02:19:56 -0500 |
---|---|---|
committer | Filippos Karapetis | 2019-02-03 10:49:48 +0200 |
commit | 2207a6d326b645bd4e0982f6b0cb6176797b69f6 (patch) | |
tree | 38ec368be8acb00155d459e7a71907c01ef935b6 /engines/sci/engine | |
parent | 88fffbfcccc575c07c3f906e816d6d5fe4e1cd31 (diff) | |
download | scummvm-rg350-2207a6d326b645bd4e0982f6b0cb6176797b69f6.tar.gz scummvm-rg350-2207a6d326b645bd4e0982f6b0cb6176797b69f6.tar.bz2 scummvm-rg350-2207a6d326b645bd4e0982f6b0cb6176797b69f6.zip |
SCI: Cleanup Hoyle patches
Diffstat (limited to 'engines/sci/engine')
-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 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 }; |