From 8fda95066cff5bcf15df72dd112bd1c324b553b4 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 21 Jul 2024 06:28:31 +1000 Subject: [PATCH] Fix value being cached when it shouldn't in `InputRoll.LastVisibleRow` resolves #3972 partially reverts dd4f9aaf6 --- .../CustomControls/InputRoll/InputRoll.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs b/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs index 04ab1772ae..e0d34f5049 100644 --- a/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs +++ b/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs @@ -797,7 +797,6 @@ namespace BizHawk.Client.EmuHawk } // Small jump, more accurate - var range = 0.RangeTo(_lagFrames[VisibleRows - halfRow]); int lastVisible = LastFullyVisibleRow; do { @@ -813,7 +812,7 @@ namespace BizHawk.Client.EmuHawk SetLagFramesArray(); lastVisible = LastFullyVisibleRow; } - while (!range.Contains(lastVisible - value) && FirstVisibleRow != 0); + while ((lastVisible - value < 0 || _lagFrames[VisibleRows - halfRow] < lastVisible - value) && FirstVisibleRow != 0); } _programmaticallyChangingRow = false; PointMouseToNewCell();