[Scummvm-git-logs] scummvm master -> 0e2b775028567187069e82fb0099d366275aebc3
sev-
sev at scummvm.org
Tue Feb 25 16:05:36 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
0e2b775028 DRAGONS: COmpilation fix for dynamic plugins
Commit: 0e2b775028567187069e82fb0099d366275aebc3
https://github.com/scummvm/scummvm/commit/0e2b775028567187069e82fb0099d366275aebc3
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-02-25T17:05:19+01:00
Commit Message:
DRAGONS: COmpilation fix for dynamic plugins
Changed paths:
engines/dragons/detection.cpp
engines/dragons/module.mk
diff --git a/engines/dragons/detection.cpp b/engines/dragons/detection.cpp
index 4d80febf2e..ed2ccee21b 100644
--- a/engines/dragons/detection.cpp
+++ b/engines/dragons/detection.cpp
@@ -204,7 +204,7 @@ bool DragonsMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADG
}
#if PLUGIN_ENABLED_DYNAMIC(DRAGONS)
-REGISTER_PLUGIN_DYNAMIC(DRAGONS, PLUGIN_TYPE_ENGINE, DragonsMetaEngine);
+ REGISTER_PLUGIN_DYNAMIC(DRAGONS, PLUGIN_TYPE_ENGINE, DragonsMetaEngine);
#else
-REGISTER_PLUGIN_STATIC(DRAGONS, PLUGIN_TYPE_ENGINE, DragonsMetaEngine);
+ REGISTER_PLUGIN_STATIC(DRAGONS, PLUGIN_TYPE_ENGINE, DragonsMetaEngine);
#endif
diff --git a/engines/dragons/module.mk b/engines/dragons/module.mk
index fc0828899d..77d42c032f 100644
--- a/engines/dragons/module.mk
+++ b/engines/dragons/module.mk
@@ -38,7 +38,7 @@ MODULE_DIRS += \
engines/dragons
# This module can be built as a plugin
-ifeq ($(ENABLE_QUUX), DYNAMIC_PLUGIN)
+ifeq ($(ENABLE_DRAGONS), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
More information about the Scummvm-git-logs
mailing list