mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
BASE: Load all plugins linked inside detection plugin
This was done in UncachedPluginManager but not in PluginManager
This commit is contained in:
parent
471cf9624c
commit
1ac759abdc
@ -544,6 +544,22 @@ void PluginManager::loadAllPlugins() {
|
||||
PluginList pl((*pp)->getPlugins());
|
||||
Common::for_each(pl.begin(), pl.end(), Common::bind1st(Common::mem_fun(&PluginManager::tryLoadPlugin), this));
|
||||
}
|
||||
|
||||
#ifndef DETECTION_STATIC
|
||||
/*
|
||||
* When detection is dynamic, loading above only gets us a PLUGIN_TYPE_DETECTION plugin
|
||||
* We must register all plugins linked in it in order to use them
|
||||
*/
|
||||
PluginList dpl = getPlugins(PLUGIN_TYPE_DETECTION);
|
||||
_pluginsInMem[PLUGIN_TYPE_ENGINE_DETECTION].clear();
|
||||
for (PluginList::iterator it = dpl.begin();
|
||||
it != dpl.end();
|
||||
++it) {
|
||||
const Detection &detectionConnect = (*it)->get<Detection>();
|
||||
const PluginList &pl = detectionConnect.getPlugins();
|
||||
Common::for_each(pl.begin(), pl.end(), Common::bind1st(Common::mem_fun(&PluginManager::tryLoadPlugin), this));
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void PluginManager::loadAllPluginsOfType(PluginType type) {
|
||||
|
Loading…
Reference in New Issue
Block a user