diff options
| author | Colin Snover | 2017-08-04 23:58:07 -0500 | 
|---|---|---|
| committer | Colin Snover | 2017-09-03 20:58:08 -0500 | 
| commit | 768d698434d38809932432ca37607c01370e9363 (patch) | |
| tree | 209c802e7244da819c6edbe36630519115696ea3 | |
| parent | ebd5139653961a1c69f0b84644352839c10b4ed2 (diff) | |
| download | scummvm-rg350-768d698434d38809932432ca37607c01370e9363.tar.gz scummvm-rg350-768d698434d38809932432ca37607c01370e9363.tar.bz2 scummvm-rg350-768d698434d38809932432ca37607c01370e9363.zip | |
SCI32: Add standard SRDialog patches to Lighthouse
| -rw-r--r-- | engines/sci/engine/script_patches.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index 3d59adbcfc..338c57fa70 100644 --- a/engines/sci/engine/script_patches.cpp +++ b/engines/sci/engine/script_patches.cpp @@ -2310,6 +2310,9 @@ static const uint16 lighthouseFlagResetPatch[] = {  //          script, description,                                      signature                         patch  static const SciScriptPatcherEntry lighthouseSignatures[] = {  	{  true,     5, "fix bad globals clear after credits",         1, lighthouseFlagResetSignature,     lighthouseFlagResetPatch }, +	{  true, 64990, "increase number of save games",               1, sci2NumSavesSignature1,           sci2NumSavesPatch1 }, +	{  true, 64990, "increase number of save games",               1, sci2NumSavesSignature2,           sci2NumSavesPatch2 }, +	{  true, 64990, "disable change directory button",             1, sci2ChangeDirSignature,           sci2ChangeDirPatch },  	SCI_SIGNATUREENTRY_TERMINATOR  }; | 
