SCI: separating qfg1ega and qfg1vga gameids
svn-id: r50881
This commit is contained in:
parent
ede8fead94
commit
f456b7cfa2
5 changed files with 11 additions and 8 deletions
|
@ -56,7 +56,7 @@ static const PlainGameDescriptor s_sciGameTitles[] = {
|
|||
{"lsl2", "Leisure Suit Larry 2: Goes Looking for Love (in Several Wrong Places)"},
|
||||
{"lsl3", "Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals"},
|
||||
{"pq2", "Police Quest II: The Vengeance"},
|
||||
{"qfg1", "Quest for Glory I: So You Want to Be a Hero"}, // EGA is SCI0, VGA SCI1.1
|
||||
{"qfg1", "Quest for Glory I: So You Want to Be a Hero"},
|
||||
{"sq3", "Space Quest III: The Pirates of Pestulon"},
|
||||
// === SCI01 games ========================================================
|
||||
{"qfg2", "Quest for Glory II: Trial by Fire"},
|
||||
|
@ -89,6 +89,7 @@ static const PlainGameDescriptor s_sciGameTitles[] = {
|
|||
{"hoyle4", "Hoyle Classic Card Games"},
|
||||
{"kq6", "King's Quest VI: Heir Today, Gone Tomorrow"},
|
||||
{"laurabow2", "Laura Bow 2: The Dagger of Amon Ra"},
|
||||
{"qfg1vga", "Quest for Glory I: So You Want to Be a Hero"},
|
||||
{"qfg3", "Quest for Glory III: Wages of War"},
|
||||
{"sq5", "Space Quest V: The Next Mutation"},
|
||||
{"islandbrain", "The Island of Dr. Brain"},
|
||||
|
@ -178,6 +179,7 @@ static const GameIdStrToEnum s_gameIdStrToEnum[] = {
|
|||
{ "pq4", GID_PQ4 },
|
||||
{ "pqswat", GID_PQSWAT },
|
||||
{ "qfg1", GID_QFG1 },
|
||||
{ "qfg1vga", GID_QFG1VGA },
|
||||
{ "qfg2", GID_QFG2 },
|
||||
{ "qfg3", GID_QFG3 },
|
||||
{ "qfg4", GID_QFG4 },
|
||||
|
@ -332,7 +334,7 @@ Common::String convertSierraGameId(Common::String sierraId, uint32 *gameFlags, R
|
|||
// or qfg4 full (SCI2)
|
||||
// qfg1 VGA doesn't have view 1
|
||||
if (!resMan->testResource(ResourceId(kResourceTypeView, 1)))
|
||||
return "qfg1";
|
||||
return "qfg1vga";
|
||||
|
||||
// qfg4 full is SCI2
|
||||
if (getSciVersion() == SCI_VERSION_2)
|
||||
|
@ -587,7 +589,7 @@ const ADGameDescription *SciMetaEngine::fallbackDetect(const Common::FSList &fsl
|
|||
!strcmp(s_fallbackDesc.gameid, "sq1sci"))
|
||||
s_fallbackDesc.extra = "VGA Remake";
|
||||
|
||||
if (!strcmp(s_fallbackDesc.gameid, "qfg1") && getSciVersion() == SCI_VERSION_1_1)
|
||||
if (!strcmp(s_fallbackDesc.gameid, "qfg1vga") && getSciVersion() == SCI_VERSION_1_1)
|
||||
s_fallbackDesc.extra = "VGA Remake";
|
||||
|
||||
// Add "demo" to the description for demos
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue