mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
Fixed usages of abs() function with double arguments
Clang no longer issues "warning: using integer absolute value function 'abs' when argument is of floating point type"
This commit is contained in:
parent
5ddee98e70
commit
cbe0a34f0b
2 changed files with 2 additions and 2 deletions
|
@ -1566,7 +1566,7 @@ bool P_CheckPosition(AActor *thing, const DVector2 &pos, FCheckPosition &tm, boo
|
||||||
tm.floorpic = *rover->top.texture;
|
tm.floorpic = *rover->top.texture;
|
||||||
tm.floorterrain = rover->model->GetTerrain(rover->top.isceiling);
|
tm.floorterrain = rover->model->GetTerrain(rover->top.isceiling);
|
||||||
}
|
}
|
||||||
if (ff_bottom < tm.ceilingz && abs(delta1) >= abs(delta2))
|
if (ff_bottom < tm.ceilingz && fabs(delta1) >= fabs(delta2))
|
||||||
{
|
{
|
||||||
tm.ceilingz = ff_bottom;
|
tm.ceilingz = ff_bottom;
|
||||||
tm.ceilingpic = *rover->bottom.texture;
|
tm.ceilingpic = *rover->bottom.texture;
|
||||||
|
|
|
@ -916,7 +916,7 @@ void R_ProjectSprite (AActor *thing, int fakeside, F3DFloor *fakefloor, F3DFloor
|
||||||
// too far off the side?
|
// too far off the side?
|
||||||
// if it's a voxel, it can be further off the side
|
// if it's a voxel, it can be further off the side
|
||||||
if ((voxel == NULL && (fabs(tx / 64) > fabs(tz))) ||
|
if ((voxel == NULL && (fabs(tx / 64) > fabs(tz))) ||
|
||||||
(voxel != NULL && (fabs(tx / 128) > abs(tz))))
|
(voxel != NULL && (fabs(tx / 128) > fabs(tz))))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue