aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2003-12-02 08:12:39 +0000
committerTravis Howell2003-12-02 08:12:39 +0000
commit3774c09dbef62cc24e17586197c5c69701003795 (patch)
tree456ed13a53f574014ebb23492a9cb76b9d568ce3 /scumm
parentc793e4c9df8a241869f94cc50deca24685597298 (diff)
downloadscummvm-rg350-3774c09dbef62cc24e17586197c5c69701003795.tar.gz
scummvm-rg350-3774c09dbef62cc24e17586197c5c69701003795.tar.bz2
scummvm-rg350-3774c09dbef62cc24e17586197c5c69701003795.zip
Backwards compatbility
svn-id: r11459
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scummvm.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 51debb0e30..be19c99993 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -626,6 +626,10 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
_demoMode = ConfMan.getBool("demo_mode");
_noSubtitles = ConfMan.getBool("subtitles");
_noSubtitles ^=1;
+ if (ConfMan.hasKey("nosubtitles")) {
+ warning("Configuration key 'nosubtitles' is deprecated. Use 'subtitles' instead");
+ _noSubtitles = ConfMan.getBool("nosubtitles");
+ }
_confirmExit = ConfMan.getBool("confirm_exit");
_defaultTalkDelay = ConfMan.getInt("talkspeed");
_native_mt32 = ConfMan.getBool("native_mt32");