diff options
author | Colin Snover | 2017-09-09 15:53:53 -0500 |
---|---|---|
committer | Colin Snover | 2017-09-09 23:29:57 -0500 |
commit | 393c0d1f6250d0fd13f201c7ae28e51bd8c93215 (patch) | |
tree | 2f869fe6637174408ee62cd190ab6e47f2ef9ddc | |
parent | f200cc110fbdecb9472cc1503b6d011802f6986b (diff) | |
download | scummvm-rg350-393c0d1f6250d0fd13f201c7ae28e51bd8c93215.tar.gz scummvm-rg350-393c0d1f6250d0fd13f201c7ae28e51bd8c93215.tar.bz2 scummvm-rg350-393c0d1f6250d0fd13f201c7ae28e51bd8c93215.zip |
SCI32: Fix whitespace errors
-rw-r--r-- | engines/sci/engine/script_patches.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index e8458480e7..3eb697e845 100644 --- a/engines/sci/engine/script_patches.cpp +++ b/engines/sci/engine/script_patches.cpp @@ -3966,7 +3966,7 @@ static const uint16 phant2NumSavesPatch2[] = { PATCH_END }; -// script, description, signature patch +// script, description, signature patch static const SciScriptPatcherEntry phantasmagoria2Signatures[] = { { true, 0, "slow interface fades", 3, phant2SlowIFadeSignature, phant2SlowIFadePatch }, { true, 0, "bad arguments to get game version", 1, phant2GetVersionSignature, phant2GetVersionPatch }, @@ -3976,8 +3976,8 @@ static const SciScriptPatcherEntry phantasmagoria2Signatures[] = { { true, 63019, "non-responsive mouse during computer load", 1, phant2CompSlideDoorsSignature, phant2CompSlideDoorsPatch }, { true, 64990, "remove save game name mangling (1/2)", 1, phant2SaveNameSignature1, phant2SaveNamePatch1 }, { true, 64994, "remove save game name mangling (2/2)", 1, phant2SaveNameSignature2, phant2SaveNamePatch2 }, - { true, 64990, "increase number of save games", 1, phant2NumSavesSignature1, phant2NumSavesPatch1 }, - { true, 64990, "increase number of save games", 2, phant2NumSavesSignature2, phant2NumSavesPatch2 }, + { true, 64990, "increase number of save games", 1, phant2NumSavesSignature1, phant2NumSavesPatch1 }, + { true, 64990, "increase number of save games", 2, phant2NumSavesSignature2, phant2NumSavesPatch2 }, SCI_SIGNATUREENTRY_TERMINATOR }; |