aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/config.h
diff options
context:
space:
mode:
authorNeeraj Kumar2010-07-24 22:32:08 +0000
committerNeeraj Kumar2010-07-24 22:32:08 +0000
commit184b704ddfeb9ad687c51cfa125108fcbdec863b (patch)
treef9b5c67fc49c08a77b16ef9199bb3b113d6f69c0 /engines/testbed/config.h
parentc675c1fe296f3fad5e11fca8671fa4c6cd11c3be (diff)
downloadscummvm-rg350-184b704ddfeb9ad687c51cfa125108fcbdec863b.tar.gz
scummvm-rg350-184b704ddfeb9ad687c51cfa125108fcbdec863b.tar.bz2
scummvm-rg350-184b704ddfeb9ad687c51cfa125108fcbdec863b.zip
TESTBED: removed unnecessary code from config file implementation
svn-id: r51267
Diffstat (limited to 'engines/testbed/config.h')
-rw-r--r--engines/testbed/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/testbed/config.h b/engines/testbed/config.h
index 8fbed858d1..2ecbf44930 100644
--- a/engines/testbed/config.h
+++ b/engines/testbed/config.h
@@ -59,7 +59,7 @@ public:
Testsuite *getTestsuiteByName(const Common::String &name);
bool stringToBool(const Common::String str) { return str.equalsIgnoreCase("true") ? true : false; }
Common::String boolToString(bool val) { return val ? "true" : "false"; }
- void initConfigFile(Common::WriteStream *ws);
+ void initDefaultConfiguration();
private:
Common::Array<Testsuite *> &_testsuiteList;
Common::String _configFileName;