From 009c03f430f2f611d858af4ec533ca9a570fd8fd Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sun, 20 Feb 2022 20:35:22 +1100 Subject: [PATCH] - Exhumed: Properly fix interpolation issues when at the end of the level instead of trying to back up everything. Revert "- Exhumed: Don't force the framerate to reduce to ticrate at end of each level, instead interpolate player's position to prevent draw errors." This reverts commit 57d54a2105dd234c15abbb660e062c1f0f36e5c7. Revert "- Exhumed: Extend 57d54a2105dd234c15abbb660e062c1f0f36e5c7 to back up the player's `bobangle` variable as well at the map's end." This reverts commit 520c03b4f123685d7bc1e5e119ddf7e35dcc6798. Revert "- Exhumed: Extend 520c03b4f123685d7bc1e5e119ddf7e35dcc6798 to back up the player's `totalvel` variable as well at the map's end." This reverts commit 14464868712ccb3f0eaec35c07bdfd9dd9ca4ddd. --- source/games/exhumed/src/exhumed.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/source/games/exhumed/src/exhumed.cpp b/source/games/exhumed/src/exhumed.cpp index 64c7c71d2..5676dc8cc 100644 --- a/source/games/exhumed/src/exhumed.cpp +++ b/source/games/exhumed/src/exhumed.cpp @@ -247,7 +247,7 @@ void DrawClock() double calc_smoothratio() { - if (bRecord || bPlayback || nFreeze != 0 || paused || cl_capfps || !cl_interpolate) + if (bRecord || bPlayback || nFreeze != 0 || paused || cl_capfps || !cl_interpolate || EndLevel) return MaxSmoothRatio; return I_GetTimeFrac() * MaxSmoothRatio; @@ -463,9 +463,6 @@ void GameInterface::Ticker() PlayLocalSound(StaticSound[59], 0, true, CHANF_UI); if (EndLevel > 1) EndLevel--; - PlayerList[nLocalPlayer].pActor->backuppos(); - PlayerList[nLocalPlayer].ototalvel = PlayerList[nLocalPlayer].totalvel; - obobangle = bobangle; int flash = 7 - abs(EndLevel - 7); videoTintBlood(flash * 30, flash * 30, flash * 30); if (EndLevel == 1)