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:
hendricks266 2015-05-19 22:10:20 +00:00
parent 221e58f8ad
commit 7f2a6a8404

View file

@ -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;