mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 23:12:15 +00:00
- Clean up some leftover floats in the input code.
This commit is contained in:
parent
73e68705da
commit
f219ee0208
2 changed files with 6 additions and 6 deletions
|
@ -513,7 +513,7 @@ void GameInterface::doPlayerMovement()
|
|||
|
||||
if (isRRRA() && (p->OnMotorcycle || p->OnBoat))
|
||||
{
|
||||
static constexpr double VEHICLETURN = (20.f * 360.f / 2048.f);
|
||||
static constexpr double VEHICLETURN = (20. * 360. / 2048.);
|
||||
double baseVel, velScale; unsigned vehFlags;
|
||||
|
||||
if (p->OnMotorcycle)
|
||||
|
|
|
@ -1444,7 +1444,7 @@ void UpdatePlayerSpriteAngle(DSWPlayer* pp)
|
|||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
void DoPlayerVehicleInputScaling(DSWPlayer* const pp, DAngle DRotator::* angle, const float scale)
|
||||
static void DoPlayerVehicleInputScaling(DSWPlayer* const pp, DAngle DRotator::* const angle, const double scale)
|
||||
{
|
||||
DAngle& currYaw = pp->cmd.ucmd.ang.*angle;
|
||||
|
||||
|
@ -2443,8 +2443,8 @@ void DoPlayerMoveVehicle(DSWPlayer* pp)
|
|||
double floordist = abs(zz - pp->sop->floor_loz);
|
||||
gameInput.ForceInputSync(pp->pnum);
|
||||
|
||||
DoPlayerVehicleInputScaling(pp, &DRotator::Yaw, 0.125f);
|
||||
DoPlayerVehicleInputScaling(pp, &DRotator::Pitch, 0.125f);
|
||||
DoPlayerVehicleInputScaling(pp, &DRotator::Yaw, 0.125);
|
||||
DoPlayerVehicleInputScaling(pp, &DRotator::Pitch, 0.125);
|
||||
|
||||
if (RectClip)
|
||||
{
|
||||
|
@ -2578,8 +2578,8 @@ void DoPlayerMoveTurret(DSWPlayer* pp)
|
|||
|
||||
gameInput.ForceInputSync(pp->pnum);
|
||||
|
||||
DoPlayerVehicleInputScaling(pp, &DRotator::Yaw, 0.125f);
|
||||
DoPlayerVehicleInputScaling(pp, &DRotator::Pitch, 0.125f);
|
||||
DoPlayerVehicleInputScaling(pp, &DRotator::Yaw, 0.125);
|
||||
DoPlayerVehicleInputScaling(pp, &DRotator::Pitch, 0.125);
|
||||
|
||||
if (pp->cmd.ucmd.ang.Yaw != nullAngle)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue