Replaced ( void ) with ()

This commit is contained in:
Robert Beckebans 2014-08-02 14:48:04 +02:00
parent f6f02b7c71
commit 352df659a8
39 changed files with 187 additions and 188 deletions

View file

@ -39,7 +39,7 @@ If you have questions concerning this license or the applicable additional terms
#define WIN_SIZE 1024
void Draw_ClearWindow( void )
void Draw_ClearWindow()
{
if( !dmapGlobals.drawflag )
@ -102,7 +102,7 @@ void Draw_ClearWindow( void )
}
void Draw_SetRed( void )
void Draw_SetRed()
{
if( !dmapGlobals.drawflag )
return;
@ -110,7 +110,7 @@ void Draw_SetRed( void )
glColor3f( 1, 0, 0 );
}
void Draw_SetGrey( void )
void Draw_SetGrey()
{
if( !dmapGlobals.drawflag )
return;
@ -118,7 +118,7 @@ void Draw_SetGrey( void )
glColor3f( 0.5f, 0.5f, 0.5f );
}
void Draw_SetBlack( void )
void Draw_SetBlack()
{
if( !dmapGlobals.drawflag )
return;
@ -220,7 +220,7 @@ void DrawLine( idVec3 v1, idVec3 v2, int color )
bool wins_init;
int draw_socket;
void GLS_BeginScene( void )
void GLS_BeginScene()
{
WSADATA winsockdata;
WORD wVersionRequested;
@ -285,7 +285,7 @@ void GLS_Triangle( const mapTri_t* tri, int code )
GLS_Winding( &w, code );
}
void GLS_EndScene( void )
void GLS_EndScene()
{
closesocket( draw_socket );
draw_socket = 0;
@ -293,7 +293,7 @@ void GLS_EndScene( void )
#else
void Draw_ClearWindow( void )
void Draw_ClearWindow()
{
}
@ -309,11 +309,11 @@ void GLS_Winding( const idWinding* w, int code )
{
}
void GLS_BeginScene( void )
void GLS_BeginScene()
{
}
void GLS_EndScene( void )
void GLS_EndScene()
{
}