Skip to content
Snippets Groups Projects
Commit d1aab2e4 authored by Alam Ed Arias's avatar Alam Ed Arias
Browse files

gcc: clear uninitialized warnings in am_map.c

parent 390927cc
Branches
Tags
No related merge requests found
......@@ -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++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment