diff options
author | Travis Howell | 2004-08-01 06:52:56 +0000 |
---|---|---|
committer | Travis Howell | 2004-08-01 06:52:56 +0000 |
commit | 4b4ab244b1d114fd4740a7dd724924bd42b5a8a3 (patch) | |
tree | dacf78a8bea580f19bf325cd06b42aaa23c7688e /base | |
parent | 2d5bfca892f613ea752425215bb2fa82e6552354 (diff) | |
download | scummvm-rg350-4b4ab244b1d114fd4740a7dd724924bd42b5a8a3.tar.gz scummvm-rg350-4b4ab244b1d114fd4740a7dd724924bd42b5a8a3.tar.bz2 scummvm-rg350-4b4ab244b1d114fd4740a7dd724924bd42b5a8a3.zip |
Correct default settings used by COMI
Allow object_labels config option in COMI
svn-id: r14408
Diffstat (limited to 'base')
-rw-r--r-- | base/gameDetector.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp index a99ae0c254..22fbf95550 100644 --- a/base/gameDetector.cpp +++ b/base/gameDetector.cpp @@ -128,6 +128,10 @@ GameDetector::GameDetector() { ConfMan.registerDefault("boot_param", 0); ConfMan.registerDefault("save_slot", -1); +#if !defined(DISABLE_SCUMM) || !defined(DISABLE_SWORD2) + ConfMan.registerDefault("object_labels", true); +#endif + #ifndef DISABLE_SCUMM ConfMan.registerDefault("copy_protection", false); ConfMan.registerDefault("demo_mode", false); |