CPU: Reduce severity of some log statements

This commit is contained in:
Connor McLaughlin
2021-04-19 15:17:43 +10:00
parent 62360d088a
commit 3106c797d9
2 changed files with 8 additions and 9 deletions

View File

@ -917,11 +917,11 @@ static TickCount DoEXP2Access(u32 offset, u32& value)
}
else if (offset == 0x41 || offset == 0x42)
{
Log_WarningPrintf("BIOS POST status: %02X", value & UINT32_C(0x0F));
Log_DevPrintf("BIOS POST status: %02X", value & UINT32_C(0x0F));
}
else if (offset == 0x70)
{
Log_WarningPrintf("BIOS POST2 status: %02X", value & UINT32_C(0x0F));
Log_DevPrintf("BIOS POST2 status: %02X", value & UINT32_C(0x0F));
}
else
{