mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 22:11:18 +12:00
Migrate force_log_printf to new logging (#714)
This commit is contained in:
parent
072c18a6e3
commit
4be57f4896
108 changed files with 401 additions and 399 deletions
|
@ -68,7 +68,7 @@ void GraphicPack2::AddPatchGroup(PatchGroup* group)
|
|||
if (group->list_patches.size() < (numEstimatedCodeCaveInstr / 8))
|
||||
{
|
||||
// if less than 1/8th of the code cave is filled print a warning
|
||||
forceLog_printf("Graphic pack patches: Code cave for group [%s] in gfx pack \"%s\" ranges from 0 to 0x%x but has only few instructions. Is this intentional?", group->name.c_str(), this->m_name.c_str(), codeCaveMaxAddr);
|
||||
cemuLog_log(LogType::Force, "Graphic pack patches: Code cave for group [{}] in gfx pack \"{}\" ranges from 0 to 0x{:x} but has only few instructions. Is this intentional?", group->name, this->m_name, codeCaveMaxAddr);
|
||||
}
|
||||
group->codeCaveSize = codeCaveMaxAddr;
|
||||
list_patchGroups.emplace_back(group);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue