Merge pull request #12907 from GaryOderNichts/fix/init_ipc_running

IOS::HLE::EmulationKernel::InitIPC: Fix WiiIPC ack generation
This commit is contained in:
Admiral H. Curtiss 2024-07-12 16:48:37 +02:00 committed by GitHub
commit 95933d5158
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ bool EmulationKernel::BootIOS(const u64 ios_title_id, HangPPC hang_ppc,
void EmulationKernel::InitIPC()
{
if (!Core::IsRunning(m_system))
if (Core::GetState(m_system) == Core::State::Uninitialized)
return;
INFO_LOG_FMT(IOS, "IPC initialised.");