diff options
author | Filippos Karapetis | 2018-08-25 12:57:01 +0300 |
---|---|---|
committer | Filippos Karapetis | 2018-08-25 12:57:01 +0300 |
commit | 414d0277d0b1ff4467f926a9048fbe8e01aa833e (patch) | |
tree | e3cbfde27bc9cd9e752fb73535e3fe13d53aadcf /engines | |
parent | 6fb19d1d0127c1e2c9fdc34950e76e1cce537ab9 (diff) | |
download | scummvm-rg350-414d0277d0b1ff4467f926a9048fbe8e01aa833e.tar.gz scummvm-rg350-414d0277d0b1ff4467f926a9048fbe8e01aa833e.tar.bz2 scummvm-rg350-414d0277d0b1ff4467f926a9048fbe8e01aa833e.zip |
SCI: Fix compilation
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/script_patches.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index f2e1bb1412..a61c9b6322 100644 --- a/engines/sci/engine/script_patches.cpp +++ b/engines/sci/engine/script_patches.cpp @@ -1202,10 +1202,10 @@ static const uint16 gk1InterrogationBugPatch[] = { static const uint16 gk1CazanouxPathfindingSignature[] = { SIG_MAGICDWORD, 0x78, // push1 x = 1 - 0x38, SIG_UINT16(0x90, 0x00), // pushi y = 144 - 0x38, SIG_UINT16(0xf6, 0x00), // pushi x = 246 - 0x38, SIG_UINT16(0x92, 0x00), // pushi y = 146 - 0x38, SIG_UINT16(0xf2, 0x00), // pushi x = 242 + 0x38, SIG_UINT16(0x0090), // pushi y = 144 + 0x38, SIG_UINT16(0x00f6), // pushi x = 246 + 0x38, SIG_UINT16(0x0092), // pushi y = 146 + 0x38, SIG_UINT16(0x00f2), // pushi x = 242 0x39, 0x69, // pushi y = 105 0x39, 0x7c, // pushi x = 124 0x39, 0x68, // pushi y = 104 @@ -1214,7 +1214,7 @@ static const uint16 gk1CazanouxPathfindingSignature[] = { 0x39, 0x45, // pushi x = 69 0x39, 0x7c, // pushi y = 124 0x39, 0x2e, // pushi x = 46 - 0x38, SIG_UINT16(0x81, 0x00), // pushi y = 129 + 0x38, SIG_UINT16(0x0081), // pushi y = 129 SIG_END }; |