diff options
| author | Johannes Schickel | 2007-01-26 10:39:30 +0000 | 
|---|---|---|
| committer | Johannes Schickel | 2007-01-26 10:39:30 +0000 | 
| commit | dd5b1e41fba4757a79d6e162217a7ebdb0032734 (patch) | |
| tree | d370331f18bc822ea49420390bf703a8b9383341 | |
| parent | cbd16b110f5b56839605b51f0daf5f2e30f4385b (diff) | |
| download | scummvm-rg350-dd5b1e41fba4757a79d6e162217a7ebdb0032734.tar.gz scummvm-rg350-dd5b1e41fba4757a79d6e162217a7ebdb0032734.tar.bz2 scummvm-rg350-dd5b1e41fba4757a79d6e162217a7ebdb0032734.zip | |
remvoed some unneeded static keywords.
svn-id: r25198
| -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 adc9d807e5..929abe5bd8 100644 --- a/engines/kyra/plugin.cpp +++ b/engines/kyra/plugin.cpp @@ -47,7 +47,7 @@ namespace {  #define KYRA3_CD_FLAGS FLAGS(false, false, false, true, Kyra::GI_KYRA3) -static const KYRAGameDescription adGameDescs[] = { +const KYRAGameDescription adGameDescs[] = {  	{ { "kyra1", 0, AD_ENTRY1("GEMCUT.EMC", "3c244298395520bb62b5edfe41688879"), Common::EN_ANY, Common::kPlatformPC }, KYRA1_FLOPPY_FLAGS },  	{ { "kyra1", 0, AD_ENTRY1("GEMCUT.EMC", "796e44863dd22fa635b042df1bf16673"), Common::EN_ANY, Common::kPlatformPC }, KYRA1_FLOPPY_FLAGS },  	{ { "kyra1", 0, AD_ENTRY1("GEMCUT.EMC", "abf8eb360e79a6c2a837751fbd4d3d24"), Common::FR_FRA, Common::kPlatformPC }, KYRA1_FLOPPY_FLAGS }, @@ -78,7 +78,7 @@ const PlainGameDescriptor gameList[] = {  	{ 0, 0 }  }; -static const Common::ADParams detectionParams = { +const Common::ADParams detectionParams = {  	// Pointer to ADGameDescription or its superset structure  	(const byte *)adGameDescs,  	// Size of that superset structure | 
