From c242dc7e1c85ea9d2ef6f6e4aa65f7cd8d4c4d89 Mon Sep 17 00:00:00 2001 From: Colton Staiduhar <29374798+arizotaz@users.noreply.github.com> Date: Wed, 11 Feb 2026 21:18:30 -0500 Subject: [PATCH] Fix a stupid error --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 75a921d..eff8f41 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -102,7 +102,7 @@ int lastWinW = 0, lastWinH = 0; */ int main(int argc, char **argv) { - std:;cout << "Starting"; + std::cout << "Starting"; fflush(stdout); int winW = 1280; @@ -151,12 +151,12 @@ int main(int argc, char **argv) // (This call will call the GlutLoopTimer() function immediately) glutTimerFunc(0, GlutLoopTimer, 0); - std:;cout << "Started"; + std::cout << "Started"; fflush(stdout); // Start the Glut Loop (Calls the funtions above repeatedly) glutMainLoop(); - std:;cout << "exited"; + std::cout << "exited"; fflush(stdout); return 0; }