aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--engines/tinsel/config.cpp6
2 files changed, 8 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 029d5152a8..3c8597e293 100644
--- a/NEWS
+++ b/NEWS
@@ -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
diff --git a/engines/tinsel/config.cpp b/engines/tinsel/config.cpp
index fd278db972..050573028a 100644
--- a/engines/tinsel/config.cpp
+++ b/engines/tinsel/config.cpp
@@ -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;
}
@@ -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;
}