mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
FifoPlayer: Actually exit on 'Stop' in dualcore
Quit the fifoplayer cpu idle loop if a shutdown has been requested
This commit is contained in:
@ -288,7 +288,7 @@ void FifoPlayer::WriteFrame(const FifoFrameInfo& frame, const AnalyzedFrameInfo&
|
|||||||
FlushWGP();
|
FlushWGP();
|
||||||
|
|
||||||
// Sleep while the GPU is active
|
// Sleep while the GPU is active
|
||||||
while (!IsIdleSet())
|
while (!IsIdleSet() && CPU::GetState() != CPU::State::PowerDown)
|
||||||
{
|
{
|
||||||
CoreTiming::Idle();
|
CoreTiming::Idle();
|
||||||
CoreTiming::Advance();
|
CoreTiming::Advance();
|
||||||
|
Reference in New Issue
Block a user