diff options
author | Johannes Schickel | 2007-01-25 11:32:50 +0000 |
---|---|---|
committer | Johannes Schickel | 2007-01-25 11:32:50 +0000 |
commit | 1f70013b158d277f0abbfe7e81e95b41f6a27420 (patch) | |
tree | 643c953673f41be456777c2492c00f60cea7bf19 | |
parent | 67916d529560677652af2de81bef21ea5fd984ef (diff) | |
download | scummvm-rg350-1f70013b158d277f0abbfe7e81e95b41f6a27420.tar.gz scummvm-rg350-1f70013b158d277f0abbfe7e81e95b41f6a27420.tar.bz2 scummvm-rg350-1f70013b158d277f0abbfe7e81e95b41f6a27420.zip |
Using 0 flags for null id instead of KYRA2_UNK_FLAGS.
svn-id: r25185
-rw-r--r-- | engines/kyra/plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/plugin.cpp b/engines/kyra/plugin.cpp index 8aa1abfd62..8e3029ccbd 100644 --- a/engines/kyra/plugin.cpp +++ b/engines/kyra/plugin.cpp @@ -68,7 +68,7 @@ static const KYRAGameDescription adGameDescs[] = { { { "kyra2", 0, AD_ENTRY1("FATE.PAK", "28cbad1c5bf06b2d3825ae57d760d032"), UNK_LANG, kPlatformPC }, KYRA2_UNK_FLAGS }, // check this! (cd version?) { { "kyra3", 0, AD_ENTRY1("ONETIME.PAK", "3833ff312757b8e6147f464cca0a6587"), UNK_LANG, kPlatformPC }, KYRA3_CD_FLAGS }, - { { NULL, NULL, {NULL, 0, NULL, 0}, UNK_LANG, kPlatformUnknown }, KYRA2_UNK_FLAGS } + { { NULL, NULL, {NULL, 0, NULL, 0}, UNK_LANG, kPlatformUnknown }, FLAGS(0, 0, 0, 0, 0) } }; const PlainGameDescriptor gameList[] = { @@ -119,7 +119,7 @@ PluginError Engine_KYRA_create(OSystem *syst, Engine **engine) { } GameFlags flags = adGameDescs[id].flags; - + Platform platform = parsePlatform(ConfMan.get("platform")); if (platform != kPlatformUnknown) { flags.platform = platform; |