remove debug print statements

This commit is contained in:
2025-04-03 15:44:54 -05:00
parent 7cce8f6d8e
commit 0d944992fb
7 changed files with 1 additions and 20 deletions

View File

@@ -139,9 +139,6 @@ namespace Archimedes {
runOrder.insert(roInsert, m->getName());
for(auto s : runOrder)
std::cout << s << std::endl;
return m;
}

View File

@@ -16,15 +16,11 @@ namespace Archimedes {
typedef GuiModule* create_t(void*, App*);
GuiModule(void* h, App* a) : Module(h, a) {
//wm = new WindowModule(nullptr, a);
deps["WindowModule"] = new WindowModule(nullptr, a);
}
virtual ~GuiModule() {}
virtual void onLoad() = 0;
virtual void run() = 0;
protected:
//WindowModule* wm;
};
}

View File

@@ -16,7 +16,7 @@ namespace Archimedes {
glfwSetErrorCallback([](int e, const char* m){
std::cout << "GLFW Error: " << m << std::endl;
});
});
if(!glfwInit()) {
std::cout << "glfwInit failed!\n";
@@ -28,7 +28,6 @@ namespace Archimedes {
glfwTerminate();
std::abort();
}
std::cout << "Window Created!\n";
glfwMakeContextCurrent(w);
glfwSwapInterval(1);