aboutsummaryrefslogtreecommitdiff
path: root/scumm/scummvm.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-12-02 08:09:14 +0000
committerTravis Howell2003-12-02 08:09:14 +0000
commitc793e4c9df8a241869f94cc50deca24685597298 (patch)
treeed345e5b368d5a74806085d500c67d502f9161f1 /scumm/scummvm.cpp
parentaf02beefd950eeb931fab78b91fe9c518d55c476 (diff)
downloadscummvm-rg350-c793e4c9df8a241869f94cc50deca24685597298.tar.gz
scummvm-rg350-c793e4c9df8a241869f94cc50deca24685597298.tar.bz2
scummvm-rg350-c793e4c9df8a241869f94cc50deca24685597298.zip
Switch nosubtitles option to subtitles, to match others and help with Simon2 issue.
svn-id: r11458
Diffstat (limited to 'scumm/scummvm.cpp')
-rw-r--r--scumm/scummvm.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 1a9d2984bc..51debb0e30 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -624,7 +624,8 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
_midiDriver = GameDetector::detectMusicDriver(gs.midi);
_demoMode = ConfMan.getBool("demo_mode");
- _noSubtitles = ConfMan.getBool("nosubtitles");
+ _noSubtitles = ConfMan.getBool("subtitles");
+ _noSubtitles ^=1;
_confirmExit = ConfMan.getBool("confirm_exit");
_defaultTalkDelay = ConfMan.getInt("talkspeed");
_native_mt32 = ConfMan.getBool("native_mt32");