diff options
| author | sluicebox | 2019-03-10 20:24:59 -0700 | 
|---|---|---|
| committer | sluicebox | 2019-03-10 20:24:59 -0700 | 
| commit | ba5276c49638daba67675a4192613b149a5cbc5c (patch) | |
| tree | 43b2ac1e15e77c6c91d60ca2f4a73c979f879005 | |
| parent | e9b229b6e632cc0dc0697217b6e2807691cec716 (diff) | |
| download | scummvm-rg350-ba5276c49638daba67675a4192613b149a5cbc5c.tar.gz scummvm-rg350-ba5276c49638daba67675a4192613b149a5cbc5c.tar.bz2 scummvm-rg350-ba5276c49638daba67675a4192613b149a5cbc5c.zip | |
SCI: Fix spacing in SQ4 script patch
| -rw-r--r-- | engines/sci/engine/script_patches.cpp | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index 4fe9725874..5a2259985b 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, | 
