diff --git a/Source/Core/DolphinQt2/FIFOPlayerWindow.cpp b/Source/Core/DolphinQt2/FIFOPlayerWindow.cpp index 2173914a18..f9eacac5bd 100644 --- a/Source/Core/DolphinQt2/FIFOPlayerWindow.cpp +++ b/Source/Core/DolphinQt2/FIFOPlayerWindow.cpp @@ -39,8 +39,12 @@ FIFOPlayerWindow::FIFOPlayerWindow(QWidget* parent) : QDialog(parent) FifoPlayer::GetInstance().SetFileLoadedCallback( [this] { QueueOnObject(this, &FIFOPlayerWindow::OnFIFOLoaded); }); - FifoPlayer::GetInstance().SetFrameWrittenCallback( - [this] { QueueOnObject(this, &FIFOPlayerWindow::OnFIFOLoaded); }); + FifoPlayer::GetInstance().SetFrameWrittenCallback([this] { + QueueOnObject(this, [this] { + UpdateInfo(); + UpdateControls(); + }); + }); connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this](Core::State state) { if (state == Core::State::Running)