diff options
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/detection.cpp | 6 | ||||
-rw-r--r-- | engines/drascula/module.mk | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/engines/drascula/detection.cpp b/engines/drascula/detection.cpp index 2c057ad03a..80ea4f0eab 100644 --- a/engines/drascula/detection.cpp +++ b/engines/drascula/detection.cpp @@ -185,4 +185,8 @@ const Common::ADGameDescription *DrasculaMetaEngine::fallbackDetect(const FSList return (const Common::ADGameDescription *)&Drascula::g_fallbackDesc; } -REGISTER_PLUGIN(DRASCULA, PLUGIN_TYPE_ENGINE, DrasculaMetaEngine); +#if PLUGIN_ENABLED_DYNAMIC(DRASCULA) + REGISTER_PLUGIN_DYNAMIC(DRASCULA, PLUGIN_TYPE_ENGINE, DrasculaMetaEngine); +#else + REGISTER_PLUGIN_STATIC(DRASCULA, PLUGIN_TYPE_ENGINE, DrasculaMetaEngine); +#endif diff --git a/engines/drascula/module.mk b/engines/drascula/module.mk index ff51313fce..042b227ca3 100644 --- a/engines/drascula/module.mk +++ b/engines/drascula/module.mk @@ -10,7 +10,7 @@ MODULE_OBJS = \ # This module can be built as a plugin -ifdef BUILD_PLUGINS +ifeq ($(ENABLE_DRASCULA), DYNAMIC_PLUGIN) PLUGIN := 1 endif |