mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 04:11:18 +00:00
gcc: clear uninitialized warnings in am_map.c
This commit is contained in:
parent
390927cc32
commit
d1aab2e418
1 changed files with 1 additions and 1 deletions
|
@ -999,7 +999,7 @@ static inline void AM_drawWalls(void)
|
|||
static mline_t l;
|
||||
#ifdef ESLOPE
|
||||
fixed_t frontf1,frontf2, frontc1, frontc2; // front floor/ceiling ends
|
||||
fixed_t backf1, backf2, backc1, backc2; // back floor ceiling ends
|
||||
fixed_t backf1 = 0, backf2 = 0, backc1 = 0, backc2 = 0; // back floor ceiling ends
|
||||
#endif
|
||||
|
||||
for (i = 0; i < numlines; i++)
|
||||
|
|
Loading…
Reference in a new issue