diff options
author | D G Turner | 2014-01-14 23:11:20 +0000 |
---|---|---|
committer | D G Turner | 2014-01-14 23:11:20 +0000 |
commit | 6814ce68bf67094b74619a55d6c132b1791062bd (patch) | |
tree | 7357dc7e7ae9fe51566f102eaacdc80c9d6ab1c2 | |
parent | be9833a43fe28b743bdbd5f75e7de5cc789e9e4f (diff) | |
download | scummvm-rg350-6814ce68bf67094b74619a55d6c132b1791062bd.tar.gz scummvm-rg350-6814ce68bf67094b74619a55d6c132b1791062bd.tar.bz2 scummvm-rg350-6814ce68bf67094b74619a55d6c132b1791062bd.zip |
QUEEN: Disable detection entries with unknown MD5sums.
This forces detection of the entries with missing MD5sums via the
fallback detector. This triggers will then trigger a warning
with the associated md5sum for the user to report to the team.
-rw-r--r-- | engines/queen/detection.cpp | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/engines/queen/detection.cpp b/engines/queen/detection.cpp index d2141b8f68..3586edbb29 100644 --- a/engines/queen/detection.cpp +++ b/engines/queen/detection.cpp @@ -122,6 +122,7 @@ static const QueenGameDescription gameDescriptions[] = { }, }, +#if 0 // Amiga Floppy - English { { @@ -134,6 +135,7 @@ static const QueenGameDescription gameDescriptions[] = { GUIO0() }, }, +#endif // DOS Floppy - English { @@ -161,6 +163,7 @@ static const QueenGameDescription gameDescriptions[] = { }, }, +#if 0 // DOS Floppy - French { { @@ -173,7 +176,9 @@ static const QueenGameDescription gameDescriptions[] = { GUIO0() }, }, +#endif +#if 0 // DOS CD - French { { @@ -186,7 +191,9 @@ static const QueenGameDescription gameDescriptions[] = { GUIO0() }, }, +#endif +#if 0 // DOS Floppy - German { { @@ -199,7 +206,9 @@ static const QueenGameDescription gameDescriptions[] = { GUIO0() }, }, +#endif +#if 0 // DOS CD - German { { @@ -212,7 +221,9 @@ static const QueenGameDescription gameDescriptions[] = { GUIO0() }, }, +#endif +#if 0 // DOS CD - Hebrew { { @@ -225,7 +236,9 @@ static const QueenGameDescription gameDescriptions[] = { GUIO0() }, }, +#endif +#if 0 // DOS Floppy - Italian { { @@ -238,6 +251,7 @@ static const QueenGameDescription gameDescriptions[] = { GUIO0() }, }, +#endif // DOS CD - Italian { @@ -252,6 +266,7 @@ static const QueenGameDescription gameDescriptions[] = { }, }, +#if 0 // DOS CD - Spanish { { @@ -264,7 +279,7 @@ static const QueenGameDescription gameDescriptions[] = { GUIO0() }, }, - +#endif // DOS CD - English (Compressed Freeware Release v1.0) { |