mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-11-27 10:04:16 +01:00
Move iteration into own scope
This commit is contained in:
parent
e237ba6e8c
commit
27dbc97eca
@ -126,6 +126,7 @@ 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(),
|
||||
@ -135,6 +136,7 @@ void doStart(int argc, char **argv) {
|
||||
gLoadedModules.erase(it);
|
||||
gLoadedModules.push_back(module);
|
||||
}
|
||||
}
|
||||
|
||||
bool aromaBaseModuleLoaded = false;
|
||||
for (auto &curModule : gLoadedModules) {
|
||||
|
Loading…
Reference in New Issue
Block a user