diff options
author | Colin Snover | 2017-07-27 20:42:17 -0500 |
---|---|---|
committer | Colin Snover | 2017-07-30 19:10:50 -0500 |
commit | c8a06bed4064377474c78ac58907a3a8609780e4 (patch) | |
tree | 38c4451afda5e11d5de5ba4c7f4f66f4b78fbc4c /engines/sci | |
parent | ba4c28418fcc0bf384619a325aaa73726cf00875 (diff) | |
download | scummvm-rg350-c8a06bed4064377474c78ac58907a3a8609780e4.tar.gz scummvm-rg350-c8a06bed4064377474c78ac58907a3a8609780e4.tar.bz2 scummvm-rg350-c8a06bed4064377474c78ac58907a3a8609780e4.zip |
SCI32: Fix Phant2 game name
The game was originally titled "Phantasmagoria: A Puzzle of Flesh",
but the publisher now seem to be titling it "Phantasmagoria 2: A
Puzzle of Flesh". It was never referred to using roman numerals in
any release as far as I can find (the French "Fatal Obsessions"
release was just "Phantasmagoria: Obsessions Fatales").
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp index fe95b0cf2f..17a1ece3e1 100644 --- a/engines/sci/detection.cpp +++ b/engines/sci/detection.cpp @@ -126,7 +126,7 @@ static const PlainGameDescriptor s_sciGameTitles[] = { // === SCI3 games ========================================================= {"lsl7", "Leisure Suit Larry 7: Love for Sail!"}, {"lighthouse", "Lighthouse: The Dark Being"}, - {"phantasmagoria2", "Phantasmagoria II: A Puzzle of Flesh"}, + {"phantasmagoria2", "Phantasmagoria 2: A Puzzle of Flesh"}, //{"shivers2", "Shivers II: Harvest of Souls"}, // Not SCI {"rama", "RAMA"}, {0, 0} |