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)
{
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;
}