mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-14 08:50:53 +00:00
Fix -Wconditional-uninitialized warnings under Clang
This commit is contained in:
parent
a342b8b15b
commit
7c6cb9b6d6
1 changed files with 1 additions and 1 deletions
|
@ -1157,7 +1157,7 @@ void readgametype(MYFILE *f, INT32 num)
|
|||
char gtconst[MAXLINELEN+1];
|
||||
char gtdescription[441];
|
||||
|
||||
UINT8 newgtleftcolor, newgtrightcolor;
|
||||
UINT8 newgtleftcolor = 0, newgtrightcolor = 0;
|
||||
boolean has_desc_colors[2] = { false, false };
|
||||
|
||||
gtconst[0] = '\0';
|
||||
|
|
Loading…
Reference in a new issue