From 523285b9b0bd1c0934599a0dac676ac201d4f548 Mon Sep 17 00:00:00 2001 From: Mitch Richters Date: Mon, 1 Nov 2021 23:30:17 +1100 Subject: [PATCH] - Duke (RR): Clean up some unnecessary `FixedToFloat()` usage with the `fixedhoriz` `asbuildf()` method. --- source/games/duke/src/player_r.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/games/duke/src/player_r.cpp b/source/games/duke/src/player_r.cpp index e0abf909e..6027be8ab 100644 --- a/source/games/duke/src/player_r.cpp +++ b/source/games/duke/src/player_r.cpp @@ -1742,7 +1742,7 @@ static void onMotorcycle(int snum, ESyncBits &actions) } if (horiz != FRACUNIT) { - p->horizon.addadjustment(horiz - FixedToFloat(p->horizon.horiz.asq16())); + p->horizon.addadjustment(horiz - p->horizon.horiz.asbuildf()); } int currSpeed = int(p->MotoSpeed); @@ -2010,7 +2010,7 @@ static void onBoat(int snum, ESyncBits &actions) } if (horiz != FRACUNIT) { - p->horizon.addadjustment(horiz - FixedToFloat(p->horizon.horiz.asq16())); + p->horizon.addadjustment(horiz - p->horizon.horiz.asbuildf()); } if (p->MotoSpeed > 0 && p->on_ground == 1 && (p->vehTurnLeft || p->vehTurnRight))