aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/init_v7.cpp
diff options
context:
space:
mode:
authorSven Hesse2011-02-04 15:55:54 +0000
committerSven Hesse2011-02-04 15:55:54 +0000
commite3ceff83f43942e7052eee8339b6d733a47e9734 (patch)
tree498a630600f6c1d8324733962e1eeedc337f9550 /engines/gob/init_v7.cpp
parentb6d2e521c55a2a1df19d81ba54fd41980524766d (diff)
downloadscummvm-rg350-e3ceff83f43942e7052eee8339b6d733a47e9734.tar.gz
scummvm-rg350-e3ceff83f43942e7052eee8339b6d733a47e9734.tar.bz2
scummvm-rg350-e3ceff83f43942e7052eee8339b6d733a47e9734.zip
GOB: Add the "envir" directory to the search path for Adibou
svn-id: r55770
Diffstat (limited to 'engines/gob/init_v7.cpp')
-rw-r--r--engines/gob/init_v7.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/engines/gob/init_v7.cpp b/engines/gob/init_v7.cpp
new file mode 100644
index 0000000000..709cefb69d
--- /dev/null
+++ b/engines/gob/init_v7.cpp
@@ -0,0 +1,48 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#include "common/fs.h"
+#include "common/config-manager.h"
+
+#include "gob/init.h"
+
+namespace Gob {
+
+Init_v7::Init_v7(GobEngine *vm) : Init_v2(vm) {
+}
+
+Init_v7::~Init_v7() {
+}
+
+void Init_v7::initGame() {
+ const Common::FSNode gameDataDir(ConfMan.get("path"));
+
+ // Add the environment directory
+ SearchMan.addSubDirectoryMatching(gameDataDir, "envir");
+
+ Init::initGame();
+}
+
+} // End of namespace Gob