- remove the 'F' prefix from the floating point access function to the sidedef texture info, now that the fixed point versions are gone.

This commit is contained in:
Christoph Oelckers 2016-04-23 10:55:55 +02:00
commit 35a6994d0a
8 changed files with 41 additions and 41 deletions

View file

@ -695,8 +695,8 @@ void DWallScrollInterpolation::Destroy()
void DWallScrollInterpolation::UpdateInterpolation()
{
oldx = side->GetTextureXOffsetF(part);
oldy = side->GetTextureYOffsetF(part);
oldx = side->GetTextureXOffset(part);
oldy = side->GetTextureYOffset(part);
}
//==========================================================================
@ -719,8 +719,8 @@ void DWallScrollInterpolation::Restore()
void DWallScrollInterpolation::Interpolate(double smoothratio)
{
bakx = side->GetTextureXOffsetF(part);
baky = side->GetTextureYOffsetF(part);
bakx = side->GetTextureXOffset(part);
baky = side->GetTextureYOffset(part);
if (refcount == 0 && oldx == bakx && oldy == baky)
{