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