aboutsummaryrefslogtreecommitdiff
path: root/base/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'base/main.cpp')
-rw-r--r--base/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/base/main.cpp b/base/main.cpp
index 8564d64c26..028f25dff2 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -345,7 +345,8 @@ extern "C" int scummvm_main(int argc, const char * const argv[]) {
}
#if defined(NEW_PLUGIN_DESIGN_FIRST_REFINEMENT) && defined(DYNAMIC_MODULES) //note: I'm going to refactor this name later :P
- // Don't load the plugins initially in this case.
+ // Only load non-engine plugins and first engine plugin initially in this case.
+ PluginManager::instance().loadFirstPlugin(); //This should be the only call to loadFirstPlugin external to the PluginManager class.
#else
// Load the plugins.
PluginManager::instance().loadPlugins();