mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix uninitialised variable error toaster found in P_MinecartThink
This commit is contained in:
parent
400cc8124a
commit
33277fbbd3
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue