remove debug print statements
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
void MinimalApp::run() {
|
||||
|
||||
for(std::string m : runOrder) {
|
||||
std::cout << "onLoad module: " << m << std::endl;
|
||||
modules[m]->onLoad();
|
||||
}
|
||||
|
||||
|
||||
@@ -14,7 +14,6 @@ class MinimalApp : public Archimedes::App {
|
||||
void handleArgs(const int& argc, char* argv[]) {
|
||||
if(argc > 1) {
|
||||
for(int i = 1; i < argc; i++) {
|
||||
std::cout << "Attempting to load: " << argv[i] << std::endl;
|
||||
load(dynamicLoad(argv[i]));
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user