heavy refactoring

This commit is contained in:
2025-04-02 11:50:32 -05:00
parent c3685d2b30
commit 44ef73395c
18 changed files with 132 additions and 93 deletions

View File

@@ -18,7 +18,7 @@ void MinimalApp::run() {
toClose.clear();
for(std::string s : toOpen) {
load(s, getBlacklist());
load(s, modules.begin());
}
toOpen.clear();
}

View File

@@ -14,7 +14,7 @@ class MinimalApp : public Archimedes::App {
void handleArgs(const int& argc, char* argv[]) {
if(argc > 1) {
for(int i = 1; i < argc; i++)
load(dynamicLoad(argv[i]), getBlacklist());
load(dynamicLoad(argv[i]), modules.begin());
} else {
std::cout << "No modules to load\n";
end();