[Scummvm-git-logs] scummvm master -> ba5276c49638daba67675a4192613b149a5cbc5c
sluicebox
22204938+sluicebox at users.noreply.github.com
Mon Mar 11 04:25:28 CET 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
ba5276c496 SCI: Fix spacing in SQ4 script patch
Commit: ba5276c49638daba67675a4192613b149a5cbc5c
https://github.com/scummvm/scummvm/commit/ba5276c49638daba67675a4192613b149a5cbc5c
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2019-03-10T20:24:59-07:00
Commit Message:
SCI: Fix spacing in SQ4 script patch
Changed paths:
engines/sci/engine/script_patches.cpp
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp
index 4fe9725..5a22599 100644
--- a/engines/sci/engine/script_patches.cpp
+++ b/engines/sci/engine/script_patches.cpp
@@ -11085,21 +11085,21 @@ static const uint16 sq4CdPatchRedShopperMessageFix[] = {
// Responsible method: Heap in scripts 405, 406, 410, and 411
// Fixes bug #10912
static const uint16 sq4SignatureZeroGravityBlast[] = {
- SIG_MAGICDWORD, // blast
- SIG_UINT16(0x0002), // yStep = 2
- SIG_UINT16(0x001c), // view = 128
- SIG_UINT16(0x0000), // loop = 0
- SIG_UINT16(0x0000), // cel = 0
- SIG_UINT16(0x0000), // priority = 0
- SIG_UINT16(0x0000), // underBits = 0
- SIG_UINT16(0x0000), // signal = 0
- SIG_END
+ SIG_MAGICDWORD, // blast
+ SIG_UINT16(0x0002), // yStep = 2
+ SIG_UINT16(0x001c), // view = 128
+ SIG_UINT16(0x0000), // loop = 0
+ SIG_UINT16(0x0000), // cel = 0
+ SIG_UINT16(0x0000), // priority = 0
+ SIG_UINT16(0x0000), // underBits = 0
+ SIG_UINT16(0x0000), // signal = 0
+ SIG_END
};
static const uint16 sq4PatchZeroGravityBlast[] = {
- PATCH_ADDTOOFFSET(+12),
- PATCH_UINT16(0x4000), // signal = $4000 [ set ignore-actors flag ]
- PATCH_END
+ PATCH_ADDTOOFFSET(+12),
+ PATCH_UINT16(0x4000), // signal = $4000 [ set ignore-actors flag ]
+ PATCH_END
};
// The scripts in SQ4CD support simultaneous playing of speech and subtitles,
More information about the Scummvm-git-logs
mailing list