Skip to content

Commit

Permalink
FifoPlayer: Actually exit on 'Stop' in dualcore
Browse files Browse the repository at this point in the history
Quit the fifoplayer cpu idle loop if a shutdown has been requested
  • Loading branch information
booto authored and RealJohnGalt committed Aug 18, 2018
1 parent eb562b3 commit f4a553d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/FifoPlayer/FifoPlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ void FifoPlayer::WriteFrame(const FifoFrameInfo& frame, const AnalyzedFrameInfo&
FlushWGP();

// Sleep while the GPU is active
while (!IsIdleSet())
while (!IsIdleSet() && CPU::GetState() != CPU::State::PowerDown)
{
CoreTiming::Idle();
CoreTiming::Advance();
Expand Down

0 comments on commit f4a553d

Please sign in to comment.