Fix a stupid error

This commit is contained in:
Colton Staiduhar
2026-02-11 21:18:30 -05:00
parent 21c67236dd
commit c242dc7e1c

View File

@@ -102,7 +102,7 @@ int lastWinW = 0, lastWinH = 0;
*/ */
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
std:;cout << "Starting"; std::cout << "Starting";
fflush(stdout); fflush(stdout);
int winW = 1280; int winW = 1280;
@@ -151,12 +151,12 @@ int main(int argc, char **argv)
// (This call will call the GlutLoopTimer() function immediately) // (This call will call the GlutLoopTimer() function immediately)
glutTimerFunc(0, GlutLoopTimer, 0); glutTimerFunc(0, GlutLoopTimer, 0);
std:;cout << "Started"; std::cout << "Started";
fflush(stdout); fflush(stdout);
// Start the Glut Loop (Calls the funtions above repeatedly) // Start the Glut Loop (Calls the funtions above repeatedly)
glutMainLoop(); glutMainLoop();
std:;cout << "exited"; std::cout << "exited";
fflush(stdout); fflush(stdout);
return 0; return 0;
} }