mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
actors.cpp: Address -Wsometimes-uninitialized warnings
git-svn-id: https://svn.eduke32.com/eduke32@8528 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e2d64a1c4a
commit
6a4870e7fb
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ void A_RadiusDamageObject_Internal(int const spriteNum, int const otherSprite, i
|
|||
{
|
||||
// this is really weird
|
||||
int const k = blastRadius/3;
|
||||
int dmgBase, dmgFuzz;
|
||||
int dmgBase = 0, dmgFuzz = 1;
|
||||
|
||||
if (spriteDist < k)
|
||||
dmgBase = dmg3, dmgFuzz = dmg4;
|
||||
|
|
Loading…
Reference in a new issue