mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 07:39:17 +00:00
Frontends: Migrate logs over to fmt
This commit is contained in:
parent
4c9ffb58fa
commit
ffbf3d71f0
6 changed files with 25 additions and 25 deletions
|
@ -1601,10 +1601,10 @@ void MenuBar::SearchInstruction()
|
|||
QString::fromStdString(PPCTables::GetInstructionName(PowerPC::HostRead_U32(addr)));
|
||||
if (op == ins_name)
|
||||
{
|
||||
NOTICE_LOG(POWERPC, "Found %s at %08x", op.toStdString().c_str(), addr);
|
||||
NOTICE_LOG_FMT(POWERPC, "Found {} at {:08x}", op.toStdString(), addr);
|
||||
found = true;
|
||||
}
|
||||
}
|
||||
if (!found)
|
||||
NOTICE_LOG(POWERPC, "Opcode %s not found", op.toStdString().c_str());
|
||||
NOTICE_LOG_FMT(POWERPC, "Opcode {} not found", op.toStdString());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue