diff options
| author | Gregory Montoir | 2007-01-30 20:20:05 +0000 |
|---|---|---|
| committer | Gregory Montoir | 2007-01-30 20:20:05 +0000 |
| commit | 7e5a0b05b552ae735f3b051f5f19cfc93467f56e (patch) | |
| tree | 457c616bf1733f9149bf22d9d9c9cd7c14095650 | |
| parent | 5bdfd2d1021354146d8b4c7cf07c967800237a1a (diff) | |
| download | scummvm-rg350-7e5a0b05b552ae735f3b051f5f19cfc93467f56e.tar.gz scummvm-rg350-7e5a0b05b552ae735f3b051f5f19cfc93467f56e.tar.bz2 scummvm-rg350-7e5a0b05b552ae735f3b051f5f19cfc93467f56e.zip | |
warnings
svn-id: r25284
| -rw-r--r-- | common/advancedDetector.h | 2 | ||||
| -rw-r--r-- | engines/kyra/plugin.cpp | 2 | ||||
| -rw-r--r-- | engines/saga/sagagame.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/common/advancedDetector.h b/common/advancedDetector.h index cc5c9c06fc..4f79cd87db 100644 --- a/common/advancedDetector.h +++ b/common/advancedDetector.h @@ -69,7 +69,7 @@ struct ADParams { // Name of single gameid (optional) const char *singleid; // Flags - const uint32 flags; + uint32 flags; }; typedef Array<int> ADList; diff --git a/engines/kyra/plugin.cpp b/engines/kyra/plugin.cpp index 8384bb7298..9b0e99eee6 100644 --- a/engines/kyra/plugin.cpp +++ b/engines/kyra/plugin.cpp @@ -68,7 +68,7 @@ const KYRAGameDescription adGameDescs[] = { { { "kyra2", 0, AD_ENTRY1("FATE.PAK", "28cbad1c5bf06b2d3825ae57d760d032"), Common::UNK_LANG, Common::kPlatformPC }, KYRA2_UNK_FLAGS }, // check this! (cd version?) { { "kyra3", 0, AD_ENTRY1("ONETIME.PAK", "3833ff312757b8e6147f464cca0a6587"), Common::UNK_LANG, Common::kPlatformPC }, KYRA3_CD_FLAGS }, - { { NULL, NULL, {NULL, 0, NULL, 0}, Common::UNK_LANG, Common::kPlatformUnknown }, FLAGS(0, 0, 0, 0) } + { { NULL, NULL, { {NULL, 0, NULL, 0} }, Common::UNK_LANG, Common::kPlatformUnknown }, FLAGS(0, 0, 0, 0) } }; const PlainGameDescriptor gameList[] = { diff --git a/engines/saga/sagagame.cpp b/engines/saga/sagagame.cpp index 0a790a521a..4cbf6c2527 100644 --- a/engines/saga/sagagame.cpp +++ b/engines/saga/sagagame.cpp @@ -1431,5 +1431,5 @@ static const SAGAGameDescription gameDescriptions[] = { 0, NULL, }, - { { NULL, NULL, {NULL, 0, NULL, 0}, Common::UNK_LANG, Common::kPlatformUnknown }, 0, 0, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 0, NULL } + { { NULL, NULL, { {NULL, 0, NULL, 0} }, Common::UNK_LANG, Common::kPlatformUnknown }, 0, 0, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 0, NULL } }; |
