aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorEugene Sandulenko2005-04-05 15:07:40 +0000
committerEugene Sandulenko2005-04-05 15:07:40 +0000
commit1758c5b211a39c29a193546348e7cc6e7bc2e8c9 (patch)
tree225d803c62c79d6a6d95ada0096e8832e9e65044 /base
parentb399a052f1a60df4731aa15d330e1c0b759ed857 (diff)
downloadscummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.tar.gz
scummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.tar.bz2
scummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.zip
Initial checking of Gob engine
svn-id: r17388
Diffstat (limited to 'base')
-rw-r--r--base/plugins.cpp4
-rw-r--r--base/plugins.h1
2 files changed, 3 insertions, 2 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp
index fe785731bc..695ed6ede6 100644
--- a/base/plugins.cpp
+++ b/base/plugins.cpp
@@ -278,9 +278,11 @@ void PluginManager::loadPlugins() {
#ifndef DISABLE_KYRA
LINK_PLUGIN(KYRA)
#endif
+ #ifndef DISABLE_GOB
+ LINK_PLUGIN(GOB)
+ #endif
#endif
-
}
void PluginManager::unloadPlugins() {
diff --git a/base/plugins.h b/base/plugins.h
index d8276800c8..f9a5567834 100644
--- a/base/plugins.h
+++ b/base/plugins.h
@@ -155,5 +155,4 @@ public:
DetectedGameList detectGames(const FSList &fslist) const;
};
-
#endif