From 7dbf520f6771f8ef81a2373025ea4e63ddfe56d4 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Thu, 1 Jan 2004 06:29:27 +0000 Subject: Subtitles check wasn't quite right. svn-id: r12064 --- simon/simon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'simon/simon.cpp') 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 -- cgit v1.2.3