diff options
author | Colin Snover | 2017-09-16 14:31:07 -0500 |
---|---|---|
committer | Colin Snover | 2017-09-16 16:33:07 -0500 |
commit | 59fe526b16364a777a2cb3cbd94ce79f5ca13736 (patch) | |
tree | 501423d2c34073ec8a1e94b524f66599cf04827d /engines/sci/engine | |
parent | 08291cca3c61b17640e8315bc2e41f3a9de40c11 (diff) | |
download | scummvm-rg350-59fe526b16364a777a2cb3cbd94ce79f5ca13736.tar.gz scummvm-rg350-59fe526b16364a777a2cb3cbd94ce79f5ca13736.tar.bz2 scummvm-rg350-59fe526b16364a777a2cb3cbd94ce79f5ca13736.zip |
SCI32: Clean-up pass on Lighthouse script patches
* Make patch descriptions consistent
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/script_patches.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index 6c647bf3b9..9f988d6d46 100644 --- a/engines/sci/engine/script_patches.cpp +++ b/engines/sci/engine/script_patches.cpp @@ -2209,8 +2209,8 @@ 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, "increase number of save games (1/2)", 1, sci2NumSavesSignature1, sci2NumSavesPatch1 }, + { true, 64990, "increase number of save games (2/2)", 1, sci2NumSavesSignature2, sci2NumSavesPatch2 }, { true, 64990, "disable change directory button", 1, sci2ChangeDirSignature, sci2ChangeDirPatch }, SCI_SIGNATUREENTRY_TERMINATOR }; |