diff options
author | Eugene Sandulenko | 2007-01-24 22:42:44 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-01-24 22:42:44 +0000 |
commit | 318210ad962ec294b5d74f8f1d81a9e845e2696f (patch) | |
tree | d9361ae2cd4ac4c266ae0ce13d2847baf124392a /engines/cine | |
parent | edd2422a55caeb5a46ee240feaea70a5aa4a4da2 (diff) | |
download | scummvm-rg350-318210ad962ec294b5d74f8f1d81a9e845e2696f.tar.gz scummvm-rg350-318210ad962ec294b5d74f8f1d81a9e845e2696f.tar.bz2 scummvm-rg350-318210ad962ec294b5d74f8f1d81a9e845e2696f.zip |
Add optional size parameter to ADGameFileDescription. Not used now.
svn-id: r25164
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/detection.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp index 176378de3d..3b979c5065 100644 --- a/engines/cine/detection.cpp +++ b/engines/cine/detection.cpp @@ -183,9 +183,9 @@ static const CINEGameDescription gameDescriptions[] = { "fw", "Demo", { - { "demo", 0, "0f50767cd964e302d3af0ba2528df8c4"}, - { "demo.prc", 0, "d2ac3a743d288359c63644ea7071edae"}, - { NULL, 0, NULL} + { "demo", 0, "0f50767cd964e302d3af0ba2528df8c4", -1}, + { "demo.prc", 0, "d2ac3a743d288359c63644ea7071edae", -1}, + { NULL, 0, NULL, 0} }, Common::EN_ANY, Common::kPlatformAmiga, @@ -283,9 +283,9 @@ static const CINEGameDescription gameDescriptions[] = { "os", "256 colors", { - { "procs1", 0, "74c2dabd9d212525fca8875a5f6d8994"}, - { "sds1", 0, "75443ba39cdc95667e07d7118e5c151c"}, - { NULL, 0, NULL} + { "procs1", 0, "74c2dabd9d212525fca8875a5f6d8994", -1}, + { "sds1", 0, "75443ba39cdc95667e07d7118e5c151c", -1}, + { NULL, 0, NULL, 0} }, Common::ES_ESP, Common::kPlatformPC, |