summaryrefslogtreecommitdiff
blob: 9654df583c54b7d6941c7083418c31bf848ac13f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- src/main.cpp
+++ src/main.cpp
@@ -976,7 +976,7 @@
 }
 
 // general OpenGL initialization function
-void InitGL( GLvoid )
+void InitGL( void )
 {
 	//warning:  this must be done BEFORE anything important
 	//or else it will override it
@@ -1150,7 +1150,7 @@
 }
 
 // Here goes our drawing code
-int drawGLScene( GLvoid )
+int drawGLScene( void )
 {
 	glViewport(0,0,SCREEN_WIDTH, SCREEN_HEIGHT);