Skip to content

Commit 1f291dc

Browse files
authored
Update Alphabet(L).cpp
1 parent af6af4f commit 1f291dc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

OpenGL/Alphabet(L).cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,18 @@ void Draw() {
7171
glutSwapBuffers();
7272
}
7373

74-
int main(int C, char* V[])
74+
int main(int argc, char** argv)
7575
{
76-
glutInit(&C, V);
76+
glutInit(&argc, argv);
7777

7878
glutInitWindowPosition(250, 50);
7979
glutInitWindowSize(600, 600);
8080
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
81-
glutCreateWindow("SULAV");
81+
glutCreateWindow("PARAS");
8282
MyInit();
8383
glutDisplayFunc(Draw);
8484
//glutIdleFunc(Spin); //spinning
8585
glutMainLoop();
8686

8787
return 0;
88-
}
88+
}

0 commit comments

Comments
 (0)