mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-11-14 12:15:11 +01:00
Move iteration into own scope
This commit is contained in:
parent
e237ba6e8c
commit
27dbc97eca
@ -126,14 +126,16 @@ void doStart(int argc, char **argv) {
|
||||
// Order modules list by dependencies.
|
||||
gLoadedModules = OrderModulesByDependencies(gLoadedModules);
|
||||
|
||||
// make sure the plugin backend module is at the end.
|
||||
auto it = std::find_if(gLoadedModules.begin(),
|
||||
gLoadedModules.end(),
|
||||
[](auto &cur) { return std::string_view(cur->getExportName()) == "homebrew_wupsbackend"; });
|
||||
if (it != gLoadedModules.end()) {
|
||||
auto module = *it;
|
||||
gLoadedModules.erase(it);
|
||||
gLoadedModules.push_back(module);
|
||||
{
|
||||
// make sure the plugin backend module is at the end.
|
||||
auto it = std::find_if(gLoadedModules.begin(),
|
||||
gLoadedModules.end(),
|
||||
[](auto &cur) { return std::string_view(cur->getExportName()) == "homebrew_wupsbackend"; });
|
||||
if (it != gLoadedModules.end()) {
|
||||
auto module = *it;
|
||||
gLoadedModules.erase(it);
|
||||
gLoadedModules.push_back(module);
|
||||
}
|
||||
}
|
||||
|
||||
bool aromaBaseModuleLoaded = false;
|
||||
|
Loading…
Reference in New Issue
Block a user