Skip to content

Commit

Permalink
TINSEL: Fix #3422433 ("DW2: US version uses UK graphics")
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Torbjörn Andersson committed Oct 13, 2011
1 parent 7d6d8c2 commit 744f850
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NEWS
Expand Up @@ -61,6 +61,8 @@ For a more comprehensive changelog of the latest experimental code, see:

Tinsel:
- Fixed a regression that made Discworld uncompletable.
- The US version of Discworld II now shows the correct title screen and
language flag.

SAGA:
- Fixed a regression in Inherit the Earth's dragon walk code which
Expand Down
6 changes: 6 additions & 0 deletions engines/tinsel/config.cpp
Expand Up @@ -76,6 +76,9 @@ void Config::writeToDisk() {
case TXT_ITALIAN:
lang = Common::IT_ITA;
break;
case TXT_US:
lang = Common::EN_USA;
break;
default:
lang = Common::EN_ANY;
}
Expand Down Expand Up @@ -132,6 +135,9 @@ void Config::readFromDisk() {
case Common::IT_ITA:
_language = TXT_ITALIAN;
break;
case Common::EN_USA:
_language = TXT_US;
break;
default:
_language = TXT_ENGLISH;
}
Expand Down

0 comments on commit 744f850

Please sign in to comment.