mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
gl_vidnt.c (VID_SetMode): Initialize stat to false to avoid a compiler warning.
Some whitespace tidy-ups all over. gl_vidsdl.c (VID_SetMode): Likewise. git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@149 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
1593b023a8
commit
ad452580db
2 changed files with 19 additions and 19 deletions
|
@ -527,7 +527,7 @@ VID_SetMode
|
|||
int VID_SetMode (int modenum)
|
||||
{
|
||||
int original_mode, temp;
|
||||
qboolean stat;
|
||||
qboolean stat = false;
|
||||
MSG msg;
|
||||
HDC hdc;
|
||||
|
||||
|
|
|
@ -242,7 +242,7 @@ VID_SetMode
|
|||
int VID_SetMode (int modenum)
|
||||
{
|
||||
int temp;
|
||||
qboolean stat;
|
||||
qboolean stat = false;
|
||||
Uint32 flags = SDL_DEFAULT_FLAGS;
|
||||
char caption[50];
|
||||
|
||||
|
|
Loading…
Reference in a new issue