remove debug statements

This commit is contained in:
2025-03-29 22:00:46 -05:00
parent ea67c91a4f
commit 6547b30d55
2 changed files with 1 additions and 5 deletions

View File

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