diff options
Diffstat (limited to 'engines/sky')
-rw-r--r-- | engines/sky/detection.cpp | 22 |
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 } }; |