Merge pull request #11186 from GaryOderNichts/ios/device_creation

IOS::HLE::Kernel::InitIPC: Replace s_ios check with Core::IsRunning
This commit is contained in:
Léo Lam 2022-10-21 21:17:58 +02:00 committed by GitHub
commit 79e09c3731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -481,7 +481,7 @@ bool Kernel::BootIOS(const u64 ios_title_id, HangPPC hang_ppc, const std::string
void Kernel::InitIPC()
{
if (s_ios == nullptr)
if (!Core::IsRunning())
return;
INFO_LOG_FMT(IOS, "IPC initialised.");