fix load function

This commit is contained in:
2025-04-03 00:31:01 -05:00
parent 494085cdc1
commit 7cce8f6d8e
5 changed files with 36 additions and 26 deletions

View File

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