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

@@ -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);