remove debug print statements
This commit is contained in:
@@ -139,9 +139,6 @@ namespace Archimedes {
|
||||
|
||||
runOrder.insert(roInsert, m->getName());
|
||||
|
||||
for(auto s : runOrder)
|
||||
std::cout << s << std::endl;
|
||||
|
||||
return m;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user