From 5ebe63b1752c02f762985f166422e7d1da4a6353 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Wed, 17 Mar 2021 12:08:11 -0700 Subject: [PATCH] Reset the from frame/object to 0 on starting FIFO playback Now that this is only called when playback actually starts (and not on unpausing), this change makes the experience a bit better (no more missing objects from not having reset the from object after changing FIFOs). --- Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp index d2132f3cd6..d88581b6f5 100644 --- a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp +++ b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp @@ -304,6 +304,8 @@ void FIFOPlayerWindow::OnFIFOLoaded() m_frame_range_to->setMaximum(frame_count); m_object_range_to->setMaximum(object_count); + m_frame_range_from->setValue(0); + m_object_range_from->setValue(0); m_frame_range_to->setValue(frame_count); m_object_range_to->setValue(object_count);