From 6c0fae421c2cc79d8926358794c16e255a48fd34 Mon Sep 17 00:00:00 2001 From: Sryder Date: Sun, 4 Nov 2018 17:37:18 +0000 Subject: [PATCH] Literally a single compiler warning. --- src/p_enemy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_enemy.c b/src/p_enemy.c index 2756035d..f9b62aab 100644 --- a/src/p_enemy.c +++ b/src/p_enemy.c @@ -4033,10 +4033,10 @@ static inline boolean PIT_MineExplode(mobj_t *thing) void A_MineExplode(mobj_t *actor) { INT32 bx, by, xl, xh, yl, yh; - explodedist = FixedMul(actor->info->painchance, mapheaderinfo[gamemap-1]->mobj_scale); INT32 d; INT32 locvar1 = var1; mobjtype_t type; + explodedist = FixedMul(actor->info->painchance, mapheaderinfo[gamemap-1]->mobj_scale); #ifdef HAVE_BLUA if (LUA_CallAction("A_MineExplode", actor)) return;