diff options
| author | GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> | 2024-07-02 15:36:26 +0200 |
|---|---|---|
| committer | GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> | 2024-07-11 19:41:28 +0200 |
| commit | 82b97ca904e39abb0649d8eebbb653065543a7a7 (patch) | |
| tree | 3492a99f67769664263f0f614e91b42dd4238b3d /Source/Core | |
| parent | 0a9d86951800e4228a758c54e5298fce2462a395 (diff) | |
IOS::HLE::EmulationKernel::InitIPC: Fix WiiIPC ack generation
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/IOS/IOS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/IOS/IOS.cpp b/Source/Core/Core/IOS/IOS.cpp index d15eb9317d..8eab961228 100644 --- a/Source/Core/Core/IOS/IOS.cpp +++ b/Source/Core/Core/IOS/IOS.cpp @@ -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."); |
