mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 15:32:33 +00:00
Fix uninitialised variable error toaster found in P_MinecartThink
This commit is contained in:
parent
0ba2b28381
commit
92b47f8729
1 changed files with 1 additions and 1 deletions
|
@ -10391,7 +10391,7 @@ static void P_MinecartThink(player_t *player)
|
|||
if (P_IsObjectOnGround(minecart))
|
||||
{
|
||||
sector_t *sec;
|
||||
INT32 lnum;
|
||||
INT32 lnum = -1;
|
||||
fixed_t dummy;
|
||||
|
||||
// Just hit floor.
|
||||
|
|
Loading…
Reference in a new issue