diff options
author | Max Horn | 2010-04-06 09:27:40 +0000 |
---|---|---|
committer | Max Horn | 2010-04-06 09:27:40 +0000 |
commit | fd0e3de00b04c222679558cb9e6626a3f3820f5c (patch) | |
tree | d748893b353f663a139e2b2178b847fee44ad0ae | |
parent | 56e81ac0da70b926ecd20c674145ec67c1332509 (diff) | |
download | scummvm-rg350-fd0e3de00b04c222679558cb9e6626a3f3820f5c.tar.gz scummvm-rg350-fd0e3de00b04c222679558cb9e6626a3f3820f5c.tar.bz2 scummvm-rg350-fd0e3de00b04c222679558cb9e6626a3f3820f5c.zip |
Fix AdvancedMetaEngine::createInstance to use ConfMan.setBool
svn-id: r48568
-rw-r--r-- | engines/advancedDetector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/advancedDetector.cpp b/engines/advancedDetector.cpp index 04f78bf49f..c9421f6b3b 100644 --- a/engines/advancedDetector.cpp +++ b/engines/advancedDetector.cpp @@ -264,7 +264,7 @@ Common::Error AdvancedMetaEngine::createInstance(OSystem *syst, Engine **engine) // config file. // // Fixes bug #1544799 - ConfMan.set("autoadded", "true"); + ConfMan.setBool("autoadded", true); warning("No path was provided. Assuming the data files are in the current directory"); } |