diff options
| author | Eugene Sandulenko | 2016-10-08 21:30:16 +0200 |
|---|---|---|
| committer | Eugene Sandulenko | 2017-01-25 22:41:59 +0100 |
| commit | 65d1e8db1f42d328d5b2cee7cc4dc6919fabfcf1 (patch) | |
| tree | 048f23f3a916baf5dc9f7e3ca6d9839b5c463911 | |
| parent | cb9e1b0475a946fe593561c9c7a1138786e67e99 (diff) | |
| download | scummvm-rg350-65d1e8db1f42d328d5b2cee7cc4dc6919fabfcf1.tar.gz scummvm-rg350-65d1e8db1f42d328d5b2cee7cc4dc6919fabfcf1.tar.bz2 scummvm-rg350-65d1e8db1f42d328d5b2cee7cc4dc6919fabfcf1.zip | |
CRYO: Fix detection entries
| -rw-r--r-- | engines/cryo/detection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cryo/detection.cpp b/engines/cryo/detection.cpp index 1acdbff63b..a0514cb681 100644 --- a/engines/cryo/detection.cpp +++ b/engines/cryo/detection.cpp @@ -50,7 +50,7 @@ static const ADGameDescription gameDescriptions[] = { { "losteden", 0, - AD_ENTRY1s("EDEN6.HSQ", nullptr, 17093), + AD_ENTRY1s("EDEN6.HSQ", 0, 17093), Common::EN_ANY, Common::kPlatformDOS, ADGF_DEMO, @@ -61,7 +61,7 @@ static const ADGameDescription gameDescriptions[] = { { "losteden", 0, - AD_ENTRY1s("EDEN.DAT", nullptr, 205473728), + AD_ENTRY1s("EDEN.DAT", 0, 205473728), Common::EN_ANY, Common::kPlatformDOS, ADGF_DEMO, @@ -72,7 +72,7 @@ static const ADGameDescription gameDescriptions[] = { { "losteden", 0, - AD_ENTRY1s("EDEN.DAT", nullptr, 449853776), + AD_ENTRY1s("EDEN.DAT", 0, 449853776), Common::EN_ANY, Common::kPlatformDOS, ADGF_UNSTABLE, @@ -83,7 +83,7 @@ static const ADGameDescription gameDescriptions[] = { { "losteden", 0, - AD_ENTRY1s("EDEN.DAT", nullptr, 489739536), + AD_ENTRY1s("EDEN.DAT", 0, 489739536), Common::EN_ANY, Common::kPlatformMacintosh, ADGF_UNSTABLE, |
