Merge pull request #6937 from spycrab/hotfix_fifo

Qt: Fix crash on game start
This commit is contained in:
spycrab
2018-05-22 04:44:14 +02:00
committed by GitHub

View File

@ -215,7 +215,9 @@ void FIFOPlayerWindow::StopRecording()
void FIFOPlayerWindow::OnEmulationStarted()
{
UpdateControls();
OnFIFOLoaded();
if (FifoPlayer::GetInstance().GetFile())
OnFIFOLoaded();
}
void FIFOPlayerWindow::OnEmulationStopped()