aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/drascula/detection.cpp3
-rw-r--r--engines/made/detection.cpp3
2 files changed, 4 insertions, 2 deletions
diff --git a/engines/drascula/detection.cpp b/engines/drascula/detection.cpp
index a75da3b5cb..b3d8d964c8 100644
--- a/engines/drascula/detection.cpp
+++ b/engines/drascula/detection.cpp
@@ -234,7 +234,8 @@ const Common::ADGameDescription *DrasculaMetaEngine::fallbackDetect(const FSList
Drascula::g_fallbackDesc.features = 0;
Drascula::g_fallbackDesc.version = 0;
- return (const Common::ADGameDescription *)&Drascula::g_fallbackDesc;
+ //return (const Common::ADGameDescription *)&Drascula::g_fallbackDesc;
+ return NULL;
}
#if PLUGIN_ENABLED_DYNAMIC(DRASCULA)
diff --git a/engines/made/detection.cpp b/engines/made/detection.cpp
index d25a0685d7..7d30873866 100644
--- a/engines/made/detection.cpp
+++ b/engines/made/detection.cpp
@@ -356,7 +356,8 @@ const Common::ADGameDescription *MadeMetaEngine::fallbackDetect(const FSList *fs
Made::g_fallbackDesc.features = 0;
Made::g_fallbackDesc.version = 0;
- return (const Common::ADGameDescription *)&Made::g_fallbackDesc;
+ //return (const Common::ADGameDescription *)&Made::g_fallbackDesc;
+ return NULL;
}
#if PLUGIN_ENABLED_DYNAMIC(MADE)