From 38a8aa516e0fa315e318801e5399f82e51efa8df Mon Sep 17 00:00:00 2001 From: Jordi Vilalta Prat Date: Tue, 6 May 2008 03:00:26 +0000 Subject: Allow static and dynamic plugins to be used at the same time svn-id: r31888 --- engines/drascula/detection.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'engines/drascula/detection.cpp') 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 -- cgit v1.2.3