mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 21:01:04 +00:00
Merge branch 'fix-mixed-declarations' into 'master'
Literally a single compiler warning. See merge request KartKrew/Kart!80
This commit is contained in:
commit
263b29a4a6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue