Fix uninitialised variable error toaster found in P_MinecartThink

This commit is contained in:
Monster Iestyn 2019-08-11 22:14:50 +01:00
parent 400cc8124a
commit 33277fbbd3

View file

@ -10391,7 +10391,7 @@ static void P_MinecartThink(player_t *player)
if (P_IsObjectOnGround(minecart)) if (P_IsObjectOnGround(minecart))
{ {
sector_t *sec; sector_t *sec;
INT32 lnum; INT32 lnum = -1;
fixed_t dummy; fixed_t dummy;
// Just hit floor. // Just hit floor.