mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 19:20:46 +00:00
SW: Fix warning: variable may be used uninitialized in this function [-Wmaybe-uninitialized]
git-svn-id: https://svn.eduke32.com/eduke32@5227 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
221e58f8ad
commit
7f2a6a8404
1 changed files with 1 additions and 1 deletions
|
@ -2743,7 +2743,7 @@ SectorMidPoint(short sectnum, int *xmid, int *ymid, int *zmid)
|
||||||
void
|
void
|
||||||
DrawClipBox(short spritenum)
|
DrawClipBox(short spritenum)
|
||||||
{
|
{
|
||||||
int x, y, z;
|
int x = 0, y = 0, z;
|
||||||
int radius;
|
int radius;
|
||||||
extern int zoom;
|
extern int zoom;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue