diff options
author | D G Turner | 2014-05-19 12:57:25 +0100 |
---|---|---|
committer | D G Turner | 2014-05-19 12:57:25 +0100 |
commit | 0508e395ff4b29ae9a2d837702eaf1bf79bcbb95 (patch) | |
tree | 0220802aee4cfb4443ad6f8d25706efc46d09ded | |
parent | 78bd805047f634f3174fa77ab6d6082ad725eaf5 (diff) | |
download | scummvm-rg350-0508e395ff4b29ae9a2d837702eaf1bf79bcbb95.tar.gz scummvm-rg350-0508e395ff4b29ae9a2d837702eaf1bf79bcbb95.tar.bz2 scummvm-rg350-0508e395ff4b29ae9a2d837702eaf1bf79bcbb95.zip |
TONY: Add missing Russian detection entry.
This should fix bug #6589 "TONY: Russian version not detected".
-rw-r--r-- | engines/tony/detection_tables.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/engines/tony/detection_tables.h b/engines/tony/detection_tables.h index ce4651f0ab..28dcaac752 100644 --- a/engines/tony/detection_tables.h +++ b/engines/tony/detection_tables.h @@ -217,7 +217,7 @@ static const TonyGameDescription gameDescriptions[] = { // Tony Tough German "Shoe Box", reported in bug #3582420 { "tony", - 0, + 0, { {"roasted.mpr", 0, "06203dbbc85fdd1e6dc8fc211c1a6207", 135911071}, {"roasted.mpc", 0, "bc3471f098e591dc509dcad401a8d8a5", 389554}, @@ -230,6 +230,23 @@ static const TonyGameDescription gameDescriptions[] = { }, }, + { + // Tony Tough Russian, reported in bug #6589 + { + "tony", + 0, + { + {"roasted.mpr", 0, "06203dbbc85fdd1e6dc8fc211c1a6207", 135911071}, + {"roasted.mpc", 0, "377d6e24adeedc6c5c09c31b92231218", 391536}, + AD_LISTEND + }, + Common::RU_RUS, + Common::kPlatformWindows, + ADGF_NO_FLAGS, + GUIO1(GUIO_NONE) + }, + }, + { AD_TABLE_END_MARKER } }; |