TINSEL: Fix #3422433 ("DW2: US version uses UK graphics")

According to dreammaster it should be enough to add cases for the
US version in these two functions, but unfortunately he can't test
it himself. I guess I should try to find the time to play through
the game, but right now there's an annoying DW2 regression from
commit d5690e0. See GitHub commit note for details.
This commit is contained in:
Torbjörn Andersson 2011-10-13 23:48:09 +02:00
parent 7d6d8c2475
commit 744f8507d7
2 changed files with 8 additions and 0 deletions

2
NEWS
View file

@ -61,6 +61,8 @@ For a more comprehensive changelog of the latest experimental code, see:
Tinsel: Tinsel:
- Fixed a regression that made Discworld uncompletable. - Fixed a regression that made Discworld uncompletable.
- The US version of Discworld II now shows the correct title screen and
language flag.
SAGA: SAGA:
- Fixed a regression in Inherit the Earth's dragon walk code which - Fixed a regression in Inherit the Earth's dragon walk code which

View file

@ -76,6 +76,9 @@ void Config::writeToDisk() {
case TXT_ITALIAN: case TXT_ITALIAN:
lang = Common::IT_ITA; lang = Common::IT_ITA;
break; break;
case TXT_US:
lang = Common::EN_USA;
break;
default: default:
lang = Common::EN_ANY; lang = Common::EN_ANY;
} }
@ -132,6 +135,9 @@ void Config::readFromDisk() {
case Common::IT_ITA: case Common::IT_ITA:
_language = TXT_ITALIAN; _language = TXT_ITALIAN;
break; break;
case Common::EN_USA:
_language = TXT_US;
break;
default: default:
_language = TXT_ENGLISH; _language = TXT_ENGLISH;
} }