diff options
author | Eugene Sandulenko | 2016-01-06 00:53:55 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-01-06 00:53:55 +0100 |
commit | 1f9e724a53a0f3a0bd16bb4ecf3994f14cb51ddf (patch) | |
tree | 5b4913da42fc43942dc032d5393a552573989ab1 | |
parent | 5d715e178aa3b8bb4db4d20931712b1c0e4af6ff (diff) | |
download | scummvm-rg350-1f9e724a53a0f3a0bd16bb4ecf3994f14cb51ddf.tar.gz scummvm-rg350-1f9e724a53a0f3a0bd16bb4ecf3994f14cb51ddf.tar.bz2 scummvm-rg350-1f9e724a53a0f3a0bd16bb4ecf3994f14cb51ddf.zip |
WAGE: Added detection for "Queen Quest"
-rw-r--r-- | engines/wage/detection.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/engines/wage/detection.cpp b/engines/wage/detection.cpp index 6db0645858..bdc59e9816 100644 --- a/engines/wage/detection.cpp +++ b/engines/wage/detection.cpp @@ -42,6 +42,7 @@ static const PlainGameDescriptor wageGames[] = { {"amot", "A Mess O' Trouble"}, {"cantitoe", "Camp Cantitoe"}, {"escapefromschool", "Escape from School!"}, + {"queenquest", "Queen Quest"}, {"wage", "World Adventure Game Engine game"}, {0, 0} }; @@ -85,6 +86,15 @@ static const ADGameDescription gameDescriptions[] = { ADGF_NO_FLAGS, GUIO0() }, + { + "queenquest", + "", + AD_ENTRY1s("Queen Quest", "730605d312efedb5e3ff108522fcac18", 59776), + Common::EN_ANY, + Common::kPlatformMacintosh, + ADGF_NO_FLAGS, + GUIO0() + }, AD_TABLE_END_MARKER }; |