aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--simon/simon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 17529fa318..82fa70fa45 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -354,7 +354,7 @@ SimonEngine::SimonEngine(GameDetector *detector, OSystem *syst)
_draw_images_debug = 0;
_dump_images = 0;
_speech = true;
- _subtitles = false;
+ _subtitles = true;
_fade = true;
_mouse_cursor = 0;
_vga_var9 = 0;
@@ -576,7 +576,7 @@ SimonEngine::SimonEngine(GameDetector *detector, OSystem *syst)
if ((_game & GF_SIMON2) && ConfMan.hasKey("speech_mute") && ConfMan.getBool("speech_mute") == 1)
_speech = 0;
- if (!(_game & GF_SIMON2) && _language > 1) {
+ if ((!(_game & GF_SIMON2) && _language > 1) || ((_game & GF_SIMON2) && _language == 20)) {
if (ConfMan.hasKey("subtitles") && ConfMan.getBool("subtitles") == 0)
_subtitles = 0;
} else