Core: Replace BOOT_MIOS with an explicit "is MIOS" flag

I didn't know better back then, but the boot type is only supposed to
be used for the actual boot params. It shouldn't be used or changed
after booting.
This commit is contained in:
Léo Lam
2017-05-27 12:32:45 +02:00
parent 096399d371
commit 4d2fb9b9ba
4 changed files with 4 additions and 7 deletions

View File

@ -168,7 +168,7 @@ bool Load()
Memory::Write_U32(0x00000000, ADDRESS_INIT_SEMAPHORE);
NOTICE_LOG(IOS, "IPL ready.");
SConfig::GetInstance().m_BootType = SConfig::BOOT_MIOS;
SConfig::GetInstance().m_is_mios = true;
DVDInterface::UpdateRunningGameMetadata();
return true;
}