- silenced a few conversion truncation warnings.

This commit is contained in:
Christoph Oelckers 2022-10-12 00:17:17 +02:00
parent f35c610328
commit 97223af592
7 changed files with 10 additions and 8 deletions

View file

@ -567,7 +567,7 @@ sectortype* nextsectorneighborzptr(sectortype* sectp, int startz_, int flags)
{
double startz = startz_ * zinttoworld;
double factor = (flags & Find_Up)? -1 : 1;
int bestz = INT_MAX;
double bestz = INT_MAX;
sectortype* bestsec = (flags & Find_Safe)? sectp : nullptr;
const auto planez = (flags & Find_Ceiling)? &sectortype::ceilingz : &sectortype::floorz;

View file

@ -62,7 +62,7 @@ double Get(int index, DCoreActor* actor, int type)
void Set(int index, DCoreActor* actor, int type, double val)
{
int old;
double old;
switch(type)
{
case Interp_Sect_Floorz: sector[index].setfloorz(val); break;

View file

@ -89,7 +89,7 @@ static int sgn(double v)
return (v > 0)? 1: (v < 0)? -1 : 0;
}
static int dist(const DVector2& a, const DVector2& b)
static double dist(const DVector2& a, const DVector2& b)
{
// We only need to know if it's 1 or higher, so this is enough.
return fabs(a.X - b.X) + fabs(a.Y - b.Y);
@ -162,7 +162,7 @@ int GetWindingOrder(TArray<DVector2>& poly, cmp comp1 = cmpLess, cmp comp2 = cmp
}
}
int64_t a[2], b[2], c[2];
double a[2], b[2], c[2];
int m1 = (m + n - 1) % n;
int m2 = (m + 1) % n;

View file

@ -1205,7 +1205,7 @@ int GetWallNormal(walltype* pWall)
DVector3 WheresMyMouth(int nPlayer, sectortype **sectnum)
{
auto pActor = PlayerList[nPlayer].pActor;
int height = GetActorHeight(pActor) >> 1;
double height = GetActorHeight(pActor) * 0.5;
*sectnum = pActor->sector();
auto pos = pActor->spr.pos.plusZ(-height * zinttoworld);

View file

@ -637,7 +637,7 @@ void MoveSectorSprites(sectortype* pSector, double z)
ExhumedSectIterator it(pSector);
while (auto pActor = it.Next())
{
int actz = pActor->spr.pos.Z;
double actz = pActor->spr.pos.Z;
if ((pActor->spr.statnum != 200 && actz >= minz && actz <= maxz) || pActor->spr.statnum >= 900)
{
pActor->spr.pos.Z = newz;

View file

@ -701,7 +701,8 @@ int InitCoolgCircle(DSWActor* actor)
int DoCoolgCircle(DSWActor* actor)
{
int nx,ny,bound;
double bound;
int nx,ny;
actor->set_int_ang(NORM_ANGLE(actor->int_ang() + actor->user.Counter2));

View file

@ -434,7 +434,8 @@ int InitHornetCircle(DSWActor* actor)
int DoHornetCircle(DSWActor* actor)
{
int nx,ny,bound;
int nx,ny;
double bound;
actor->set_int_ang(NORM_ANGLE(actor->int_ang() + actor->user.Counter2));