mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Explicit pointer cast for R_InterpolatePrecipMobjState
This commit is contained in:
parent
000593c135
commit
d57adac84b
1 changed files with 2 additions and 2 deletions
|
|
@ -3733,7 +3733,7 @@ static void HWR_RotateSpritePolyToAim(gl_vissprite_t *spr, FOutVector *wallVerts
|
|||
{
|
||||
if (spr->precip)
|
||||
{
|
||||
R_InterpolatePrecipMobjState(spr->mobj, rendertimefrac, &interp);
|
||||
R_InterpolatePrecipMobjState((precipmobj_t *)spr->mobj, rendertimefrac, &interp);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -3744,7 +3744,7 @@ static void HWR_RotateSpritePolyToAim(gl_vissprite_t *spr, FOutVector *wallVerts
|
|||
{
|
||||
if (spr->precip)
|
||||
{
|
||||
R_InterpolatePrecipMobjState(spr->mobj, FRACUNIT, &interp);
|
||||
R_InterpolatePrecipMobjState((precipmobj_t *)spr->mobj, FRACUNIT, &interp);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue