mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-31 12:30:40 +00:00
- Get rid of 2x unnecessary scope change calls on interpolatedvalue()
calls.
This commit is contained in:
parent
4de1b8ad86
commit
7dd5cdb86c
1 changed files with 2 additions and 2 deletions
|
@ -103,12 +103,12 @@ public:
|
||||||
|
|
||||||
DVector3 interpolatedpos(double const interpfrac)
|
DVector3 interpolatedpos(double const interpfrac)
|
||||||
{
|
{
|
||||||
return ::interpolatedvalue(opos, spr.pos, interpfrac);
|
return interpolatedvalue(opos, spr.pos, interpfrac);
|
||||||
}
|
}
|
||||||
|
|
||||||
DAngle interpolatedangle(double const interpfrac)
|
DAngle interpolatedangle(double const interpfrac)
|
||||||
{
|
{
|
||||||
return ::interpolatedvalue(oang, spr.angle, interpfrac);
|
return interpolatedvalue(oang, spr.angle, interpfrac);
|
||||||
}
|
}
|
||||||
|
|
||||||
void backupz()
|
void backupz()
|
||||||
|
|
Loading…
Reference in a new issue