diff options
Diffstat (limited to 'engines/made')
-rw-r--r-- | engines/made/detection.cpp | 6 | ||||
-rw-r--r-- | engines/made/module.mk | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/engines/made/detection.cpp b/engines/made/detection.cpp index cae5e287ee..6da3189163 100644 --- a/engines/made/detection.cpp +++ b/engines/made/detection.cpp @@ -271,4 +271,8 @@ const Common::ADGameDescription *MadeMetaEngine::fallbackDetect(const FSList *fs return (const Common::ADGameDescription *)&Made::g_fallbackDesc; } -REGISTER_PLUGIN(MADE, PLUGIN_TYPE_ENGINE, MadeMetaEngine); +#if PLUGIN_ENABLED_DYNAMIC(MADE) + REGISTER_PLUGIN_DYNAMIC(MADE, PLUGIN_TYPE_ENGINE, MadeMetaEngine); +#else + REGISTER_PLUGIN_STATIC(MADE, PLUGIN_TYPE_ENGINE, MadeMetaEngine); +#endif diff --git a/engines/made/module.mk b/engines/made/module.mk index 2c1219d09e..164e1bfba4 100644 --- a/engines/made/module.mk +++ b/engines/made/module.mk @@ -18,7 +18,7 @@ MODULE_OBJS = \ # This module can be built as a plugin -ifdef BUILD_PLUGINS +ifeq ($(ENABLE_MADE), DYNAMIC_PLUGIN) PLUGIN := 1 endif |