Fix a stupid error
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user