aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/interface.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-03-28 00:48:49 +0200
committerEugene Sandulenko2016-03-28 00:54:05 +0200
commit960d14d79d63e7766e382bf940b49482c0746671 (patch)
tree7c8c45be4f4f59cca52d2242d46e6e45102383c4 /engines/saga/interface.cpp
parent7590dbf472c760d0e7dd07267c9d0072b4796e54 (diff)
downloadscummvm-rg350-960d14d79d63e7766e382bf940b49482c0746671.tar.gz
scummvm-rg350-960d14d79d63e7766e382bf940b49482c0746671.tar.bz2
scummvm-rg350-960d14d79d63e7766e382bf940b49482c0746671.zip
SAGA: Explicitely mark versions which require color shifting in interface. Fixes bug #7092
Diffstat (limited to 'engines/saga/interface.cpp')
-rw-r--r--engines/saga/interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/interface.cpp b/engines/saga/interface.cpp
index b580e2131a..cb09d53762 100644
--- a/engines/saga/interface.cpp
+++ b/engines/saga/interface.cpp
@@ -1879,7 +1879,7 @@ void Interface::drawStatusBar() {
// Fixes bug #1848016 - "IHNM: Wrong Subtitles Color (Spanish)". This
// also applies to the German and French versions (bug #7064 - "IHNM:
// text mistake in german version").
- int offset = (_vm->getLanguage() == Common::ES_ESP || _vm->getLanguage() == Common::DE_DEU || _vm->getLanguage() == Common::FR_FRA) ? 1 : 0;
+ int offset = (_vm->getFeatures() & GF_IHNM_COLOR_FIX) ? 1 : 0;
// Disable the status text in IHNM when the chapter is 8
if (_vm->getGameId() == GID_IHNM && _vm->_scene->currentChapterNumber() == 8)