diff options
| author | Paweł Kołodziejski | 2004-05-05 07:25:32 +0000 |
|---|---|---|
| committer | Paweł Kołodziejski | 2004-05-05 07:25:32 +0000 |
| commit | e29ec6e79c325bcea2c95ecbfeb3a64c80a30630 (patch) | |
| tree | cc532d796c8800d693105ce7c1f9c799111f37fe /base | |
| parent | 06002009806a770198c7e228f8b3e0203439b17d (diff) | |
| download | scummvm-rg350-e29ec6e79c325bcea2c95ecbfeb3a64c80a30630.tar.gz scummvm-rg350-e29ec6e79c325bcea2c95ecbfeb3a64c80a30630.tar.bz2 scummvm-rg350-e29ec6e79c325bcea2c95ecbfeb3a64c80a30630.zip | |
adding initial code for Another World engine
svn-id: r13783
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 c096d1813a..97c1187761 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -252,6 +252,10 @@ void PluginManager::loadPlugins() { #ifndef DISABLE_SAGA LOAD_MODULE("saga", SAGA); #endif + +#ifndef DISABLE_AWE + LOAD_MODULE("awe", AWE); +#endif } void PluginManager::unloadPlugins() { diff --git a/base/plugins.h b/base/plugins.h index 5c5e94559f..600a8aaa03 100644 --- a/base/plugins.h +++ b/base/plugins.h @@ -173,6 +173,10 @@ DECLARE_PLUGIN(KYRA) DECLARE_PLUGIN(SAGA) #endif +#ifndef DISABLE_AWE +DECLARE_PLUGIN(AWE) +#endif + #endif #endif |
