mirror of
https://github.com/DrBeef/Raze.git
synced 2025-04-03 22:50:47 +00:00
- silenced a few conversion truncation warnings.
This commit is contained in:
parent
f35c610328
commit
97223af592
7 changed files with 10 additions and 8 deletions
|
@ -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)? §ortype::ceilingz : §ortype::floorz;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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));
|
||||
|
||||
|
|
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in a new issue