diff options
author | James Brown | 2004-04-09 12:36:06 +0000 |
---|---|---|
committer | James Brown | 2004-04-09 12:36:06 +0000 |
commit | 3978b728dbaad08a112f2f3b980221dea57523bb (patch) | |
tree | eb9a891d67ea204782829758ab54620a23d44928 /base | |
parent | 86a546652633b6768656ffe747b56f37931b3cc7 (diff) | |
download | scummvm-rg350-3978b728dbaad08a112f2f3b980221dea57523bb.tar.gz scummvm-rg350-3978b728dbaad08a112f2f3b980221dea57523bb.tar.bz2 scummvm-rg350-3978b728dbaad08a112f2f3b980221dea57523bb.zip |
Add Kyrandia base
svn-id: r13516
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 87ccc10c9f..c096d1813a 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -245,6 +245,10 @@ void PluginManager::loadPlugins() { LOAD_MODULE("queen", QUEEN); #endif +#ifndef DISABLE_KYRA + LOAD_MODULE("kyra", KYRA); +#endif + #ifndef DISABLE_SAGA LOAD_MODULE("saga", SAGA); #endif diff --git a/base/plugins.h b/base/plugins.h index 6f276743db..9fe4a287cb 100644 --- a/base/plugins.h +++ b/base/plugins.h @@ -165,6 +165,10 @@ DECLARE_PLUGIN(SWORD2) DECLARE_PLUGIN(QUEEN) #endif +#ifndef DISABLE_KYRA +DECLARE_PLUGIN(KYRA) +#endif + #ifndef DISABLE_SAGA DECLARE_PLUGIN(SAGA) #endif |