aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/sci.cpp')
-rw-r--r--engines/sci/sci.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index 7b6147c28c..a2c355cb48 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -101,6 +101,10 @@ SciEngine::~SciEngine() {
Common::Error SciEngine::run() {
// FIXME/TODO: Move some of the stuff below to init()
+ // Assign default values to the config manager, in case settings are missing
+ ConfMan.registerDefault("undither", "true");
+ ConfMan.registerDefault("enable_fb01", "false");
+
_resMan = new ResourceManager();
if (!_resMan) {
@@ -168,8 +172,6 @@ Common::Error SciEngine::run() {
_gamestate->_soundCmd = new SoundCommandParser(_resMan, segMan, _kernel, _audio, soundVersion);
- // Assign default values to the config manager, in case settings are missing
- ConfMan.registerDefault("undither", "true");
screen->unditherSetState(ConfMan.getBool("undither"));
#ifdef USE_OLD_MUSIC_FUNCTIONS