mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
oh god git merge what the fuck
This commit is contained in:
parent
06ff560dfb
commit
456736d548
@ -697,7 +697,6 @@ void EmuThread::emuRun()
|
||||
emit windowEmuStart();
|
||||
AudioInOut::Enable();
|
||||
IPC::SetActive(true);
|
||||
IPC::SetActive(true);
|
||||
}
|
||||
|
||||
void EmuThread::initContext()
|
||||
@ -723,7 +722,6 @@ void EmuThread::emuPause()
|
||||
|
||||
AudioInOut::Disable();
|
||||
IPC::SetActive(false);
|
||||
IPC::SetActive(false);
|
||||
}
|
||||
|
||||
void EmuThread::emuUnpause()
|
||||
@ -737,7 +735,6 @@ void EmuThread::emuUnpause()
|
||||
|
||||
AudioInOut::Enable();
|
||||
IPC::SetActive(true);
|
||||
IPC::SetActive(true);
|
||||
}
|
||||
|
||||
void EmuThread::emuStop()
|
||||
@ -747,11 +744,11 @@ void EmuThread::emuStop()
|
||||
|
||||
AudioInOut::Disable();
|
||||
IPC::SetActive(false);
|
||||
IPC::SetActive(false);
|
||||
}
|
||||
|
||||
void EmuThread::emuFrameStep()
|
||||
{
|
||||
if (EmuPauseStack < EmuPauseStackPauseThreshold) emit windowEmuPause();
|
||||
if (EmuRunning != emuStatus_FrameStep) IPC::SetActive(false);
|
||||
EmuRunning = emuStatus_FrameStep;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user