diff options
author | Colin Snover | 2016-12-18 17:28:54 -0600 |
---|---|---|
committer | Colin Snover | 2016-12-18 19:03:30 -0600 |
commit | 0015f397428d2f59e393801aa03b9c9b2c84a443 (patch) | |
tree | 63c7f1a0fc64f7fa6089db6fd536a9cb61fe442a | |
parent | 274ce596993be9551db4415c3f6f4db0558aa7f6 (diff) | |
download | scummvm-rg350-0015f397428d2f59e393801aa03b9c9b2c84a443.tar.gz scummvm-rg350-0015f397428d2f59e393801aa03b9c9b2c84a443.tar.bz2 scummvm-rg350-0015f397428d2f59e393801aa03b9c9b2c84a443.zip |
SCI32: Disable launcher load for Phantasmagoria
This game has its own custom save/load system that bypasses the
normal SCI save game system and performs raw file IO, so its save
files are not identifiable as ScummVM saves.
-rw-r--r-- | engines/sci/detection_tables.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/detection_tables.h b/engines/sci/detection_tables.h index 68dad834ac..0709bd4606 100644 --- a/engines/sci/detection_tables.h +++ b/engines/sci/detection_tables.h @@ -2889,14 +2889,14 @@ static const struct ADGameDescription SciGameDescriptions[] = { #define GUIO_PHANTASMAGORIA_DEMO GUIO6(GAMEOPTION_ENABLE_BLACK_LINED_VIDEO, \ GUIO_NOSPEECH, \ GUIO_NOASPECT, \ + GUIO_NOLAUNCHLOAD, \ GAMEOPTION_PREFER_DIGITAL_SFX, \ - GAMEOPTION_ORIGINAL_SAVELOAD, \ GAMEOPTION_FB01_MIDI) #define GUIO_PHANTASMAGORIA GUIO_PHANTASMAGORIA_DEMO #define GUIO_PHANTASMAGORIA_MAC GUIO5(GAMEOPTION_ENABLE_BLACK_LINED_VIDEO, \ GUIO_NOASPECT, \ + GUIO_NOLAUNCHLOAD, \ GAMEOPTION_PREFER_DIGITAL_SFX, \ - GAMEOPTION_ORIGINAL_SAVELOAD, \ GAMEOPTION_FB01_MIDI) // Phantasmagoria - English DOS/Windows (from csnover) |