aboutsummaryrefslogtreecommitdiff
path: root/engines/sky/detection.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2011-10-23 17:52:43 +0100
committerEugene Sandulenko2011-10-23 17:53:13 +0100
commit32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e (patch)
tree052e527c673bc82a9f8ebccd4f3bd1a43e46579a /engines/sky/detection.cpp
parent77c65648b1db8f8b7b245510681eafd856798d26 (diff)
downloadscummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.tar.gz
scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.tar.bz2
scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.zip
AD: Switched rest of the engines to new GUIO
Diffstat (limited to 'engines/sky/detection.cpp')
-rw-r--r--engines/sky/detection.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/engines/sky/detection.cpp b/engines/sky/detection.cpp
index a1067496da..2699500527 100644
--- a/engines/sky/detection.cpp
+++ b/engines/sky/detection.cpp
@@ -43,21 +43,21 @@ struct SkyVersion {
int dataDiskSize;
const char *extraDesc;
int version;
- uint32 guioptions;
+ const char *guioptions;
};
// TODO: Would be nice if Disk::determineGameVersion() used this table, too.
static const SkyVersion skyVersions[] = {
- { 232, -1, "floppy demo", 272, Common::GUIO_NOSPEECH }, // German
- { 243, -1, "pc gamer demo", 109, Common::GUIO_NOSPEECH },
- { 247, -1, "floppy demo", 267, Common::GUIO_NOSPEECH }, // English
- { 1404, -1, "floppy", 288, Common::GUIO_NOSPEECH },
- { 1413, -1, "floppy", 303, Common::GUIO_NOSPEECH },
- { 1445, 8830435, "floppy", 348, Common::GUIO_NOSPEECH },
- { 1445, -1, "floppy", 331, Common::GUIO_NOSPEECH },
- { 1711, -1, "cd demo", 365, Common::GUIO_NONE },
- { 5099, -1, "cd", 368, Common::GUIO_NONE },
- { 5097, -1, "cd", 372, Common::GUIO_NONE },
+ { 232, -1, "floppy demo", 272, GUIO1(GUIO_NOSPEECH) }, // German
+ { 243, -1, "pc gamer demo", 109, GUIO1(GUIO_NOSPEECH) },
+ { 247, -1, "floppy demo", 267, GUIO1(GUIO_NOSPEECH) }, // English
+ { 1404, -1, "floppy", 288, GUIO1(GUIO_NOSPEECH) },
+ { 1413, -1, "floppy", 303, GUIO1(GUIO_NOSPEECH) },
+ { 1445, 8830435, "floppy", 348, GUIO1(GUIO_NOSPEECH) },
+ { 1445, -1, "floppy", 331, GUIO1(GUIO_NOSPEECH) },
+ { 1711, -1, "cd demo", 365, GUIO1(GUIO_NONE) },
+ { 5099, -1, "cd", 368, GUIO1(GUIO_NONE) },
+ { 5097, -1, "cd", 372, GUIO1(GUIO_NONE) },
{ 0, 0, 0, 0, 0 }
};