diff options
| author | Travis Howell | 2009-07-21 10:48:32 +0000 | 
|---|---|---|
| committer | Travis Howell | 2009-07-21 10:48:32 +0000 | 
| commit | fd63d8c95a7e15e2f1511cfa6dcc9724580bf757 (patch) | |
| tree | 333abc19d4b1d82db24edce48839025783edf6ef | |
| parent | 66311e32484d5fd5e18766125c4f09ed0604314f (diff) | |
| download | scummvm-rg350-fd63d8c95a7e15e2f1511cfa6dcc9724580bf757.tar.gz scummvm-rg350-fd63d8c95a7e15e2f1511cfa6dcc9724580bf757.tar.bz2 scummvm-rg350-fd63d8c95a7e15e2f1511cfa6dcc9724580bf757.zip | |
Fix bug #2823818 - GUI: unable to select subtitles and speech for Simon 2.
svn-id: r42639
| -rw-r--r-- | engines/agos/detection_tables.h | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/engines/agos/detection_tables.h b/engines/agos/detection_tables.h index 61a377832c..0c672aef52 100644 --- a/engines/agos/detection_tables.h +++ b/engines/agos/detection_tables.h @@ -1951,7 +1951,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::EN_ANY,  			Common::kPlatformPC,  			ADGF_DEMO, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -1976,7 +1976,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::DE_DEU,  			Common::kPlatformPC,  			ADGF_DEMO, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2001,7 +2001,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::DE_DEU,  			Common::kPlatformPC,  			ADGF_DEMO, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2026,7 +2026,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::EN_ANY,  			Common::kPlatformPC,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2051,7 +2051,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::EN_ANY,  			Common::kPlatformPC,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2076,7 +2076,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::FR_FRA,  			Common::kPlatformPC,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2101,7 +2101,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::DE_DEU,  			Common::kPlatformPC,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2126,7 +2126,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::DE_DEU,  			Common::kPlatformPC,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2151,7 +2151,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::HB_ISR,  			Common::kPlatformPC,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2177,7 +2177,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::IT_ITA,  			Common::kPlatformWindows,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2202,7 +2202,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::ES_ESP,  			Common::kPlatformPC,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2227,7 +2227,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::CZ_CZE,  			Common::kPlatformWindows,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2252,7 +2252,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::EN_ANY,  			Common::kPlatformWindows,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2277,7 +2277,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::FR_FRA,  			Common::kPlatformWindows,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2302,7 +2302,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::DE_DEU,  			Common::kPlatformWindows,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, @@ -2327,7 +2327,7 @@ static const AGOSGameDescription gameDescriptions[] = {  			Common::PL_POL,  			Common::kPlatformWindows,  			ADGF_NO_FLAGS, -			GUIO_NOSUBTITLES +			GUIO_NONE  		},  		GType_SIMON2, | 
