diff options
author | Johannes Schickel | 2009-02-18 18:03:52 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-02-18 18:03:52 +0000 |
commit | 70e3670f0220989cafe8ebc10d0a459207724b70 (patch) | |
tree | 05a973d0acb2285d1e98a09c8cb956637a8cbed7 /engines/sci | |
parent | 7dfb902019684b8f54ab1c4f3196be029b174208 (diff) | |
download | scummvm-rg350-70e3670f0220989cafe8ebc10d0a459207724b70.tar.gz scummvm-rg350-70e3670f0220989cafe8ebc10d0a459207724b70.tar.bz2 scummvm-rg350-70e3670f0220989cafe8ebc10d0a459207724b70.zip |
Fixed warnings.
svn-id: r38494
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/detection.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp index 458333afe5..27329c0db8 100644 --- a/engines/sci/detection.cpp +++ b/engines/sci/detection.cpp @@ -451,7 +451,9 @@ static const struct SciGameDescription SciGameDescriptions[] = { {"resource.map", 0, "7a550ebfeae2575ca00d47703a6a774c", 9215}, {"resource.000", 0, "233394a5f33b475ae5975e7e9a420865", 8376352}, {NULL, 0, NULL, 0}}, Common::EN_ANY, Common::kPlatformPC, 0}, - {}}, + {}, + SCI_VERSION(0, 000, 000) // FIXME: add version here + }, // King's Quest 7 - English DOS {{"kq7", "", { @@ -1295,13 +1297,13 @@ static const struct SciGameDescription SciGameDescriptions[] = { SCI_VERSION(0, 000, 000) // FIXME: add version here }, - {AD_TABLE_END_MARKER, {}} + {AD_TABLE_END_MARKER, {}, SCI_VERSION(0, 000, 000)} }; // Generic entries for filename based fallback static const struct SciGameDescription SciGameGeneric[] = { - {{"sci", 0, AD_ENTRY1("resource.map", NULL), Common::UNK_LANG, Common::kPlatformUnknown, 0},{}}, - {AD_TABLE_END_MARKER, {}} + {{"sci", 0, AD_ENTRY1("resource.map", NULL), Common::UNK_LANG, Common::kPlatformUnknown, 0},{},SCI_VERSION(0, 000, 000)}, + {AD_TABLE_END_MARKER, {}, SCI_VERSION(0, 000, 000)} }; // Filename based fallback information |