make cross-instance pause work without breaking local wifi connections

This commit is contained in:
Arisotura
2023-03-11 23:07:29 +01:00
parent b0f85391e6
commit cf3aedb509
2 changed files with 10 additions and 4 deletions

View File

@ -691,6 +691,7 @@ void EmuThread::emuRun()
emit windowEmuStart();
AudioInOut::Enable();
IPC::SetActive(true);
IPC::SetActive(true);
}
void EmuThread::initContext()
@ -716,6 +717,7 @@ void EmuThread::emuPause()
AudioInOut::Disable();
IPC::SetActive(false);
IPC::SetActive(false);
}
void EmuThread::emuUnpause()
@ -729,6 +731,7 @@ void EmuThread::emuUnpause()
AudioInOut::Enable();
IPC::SetActive(true);
IPC::SetActive(true);
}
void EmuThread::emuStop()
@ -738,6 +741,7 @@ void EmuThread::emuStop()
AudioInOut::Disable();
IPC::SetActive(false);
IPC::SetActive(false);
}
void EmuThread::emuFrameStep()