Core: Convert logging over to fmt pt.3

Continues the migration over to fmt up to IOS' ES module.
This commit is contained in:
Lioncash
2020-11-20 06:47:28 -05:00
parent 858d7612ef
commit cbbf044064
36 changed files with 570 additions and 539 deletions

View File

@ -55,7 +55,7 @@ bool Load()
Memory::Write_U32(0x09142001, 0x3180);
ReinitHardware();
NOTICE_LOG(IOS, "Reinitialised hardware.");
NOTICE_LOG_FMT(IOS, "Reinitialised hardware.");
// Load symbols for the IPL if they exist.
if (!g_symbolDB.IsEmpty())
@ -74,7 +74,7 @@ bool Load()
PowerPC::SetMode(PowerPC::CoreMode::Interpreter);
MSR.Hex = 0;
PC = 0x3400;
NOTICE_LOG(IOS, "Loaded MIOS and bootstrapped PPC.");
NOTICE_LOG_FMT(IOS, "Loaded MIOS and bootstrapped PPC.");
// IOS writes 0 to 0x30f8 before bootstrapping the PPC. Once started, the IPL eventually writes
// 0xdeadbeef there, then waits for it to be cleared by IOS before continuing.
@ -83,7 +83,7 @@ bool Load()
PowerPC::SetMode(core_mode);
Memory::Write_U32(0x00000000, ADDRESS_INIT_SEMAPHORE);
NOTICE_LOG(IOS, "IPL ready.");
NOTICE_LOG_FMT(IOS, "IPL ready.");
SConfig::GetInstance().m_is_mios = true;
DVDInterface::UpdateRunningGameMetadata();
return true;