diff options
| author | Robert Göffringmann | 2003-12-16 02:10:15 +0000 |
|---|---|---|
| committer | Robert Göffringmann | 2003-12-16 02:10:15 +0000 |
| commit | 189e08bc7985fc5664e7ab95195bbade07488f48 (patch) | |
| tree | f12049da0a8e600bcdd425e4c314c50b5c9922f7 /base | |
| parent | c3a9b2df6789055325b7fea6dd591cea1d419682 (diff) | |
| download | scummvm-rg350-189e08bc7985fc5664e7ab95195bbade07488f48.tar.gz scummvm-rg350-189e08bc7985fc5664e7ab95195bbade07488f48.tar.bz2 scummvm-rg350-189e08bc7985fc5664e7ab95195bbade07488f48.zip | |
Broken Sword 1: initial import
svn-id: r11664
Diffstat (limited to 'base')
| -rw-r--r-- | base/plugins.cpp | 4 | ||||
| -rw-r--r-- | base/plugins.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp index e96813bb88..9769293a70 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -240,6 +240,10 @@ void PluginManager::loadPlugins() { LOAD_MODULE("sky", SKY); #endif +#ifndef DISABLE_SWORD1 + LOAD_MODULE("sword1", SWORD1); +#endif + #ifndef DISABLE_SWORD2 LOAD_MODULE("sword2", SWORD2); #endif diff --git a/base/plugins.h b/base/plugins.h index e0b886cb49..3852934e49 100644 --- a/base/plugins.h +++ b/base/plugins.h @@ -132,6 +132,10 @@ DECLARE_PLUGIN(SIMON) DECLARE_PLUGIN(SKY) #endif +#ifndef DISABLE_SWORD1 +DECLARE_PLUGIN(SWORD1) +#endif + #ifndef DISABLE_SWORD2 DECLARE_PLUGIN(SWORD2) #endif |
