mirror of https://github.com/PCSX2/pcsx2.git
Qt: Fix console warning about hiding bundled patches
Fixes syntax error with console write format to display warning when bundled patches are hidden due to unlabeled patches being loaded.
This commit is contained in:
parent
7b5d640f35
commit
cc62825081
|
@ -396,7 +396,7 @@ void Patch::EnumeratePnachFiles(const std::string_view& serial, u32 crc, bool ch
|
|||
if (PatchStringHasUnlabelledPatch(contents.value()))
|
||||
{
|
||||
unlabeled_patch_found = true;
|
||||
Console.WriteLn(fmt::format("Patch: Disabling any bundled '{}' patches due to unlabeled patch being loaded. (To avoid conflicts)"), PATCHES_ZIP_NAME);
|
||||
Console.WriteLn(fmt::format("Patch: Disabling any bundled '{}' patches due to unlabeled patch being loaded. (To avoid conflicts)", PATCHES_ZIP_NAME));
|
||||
}
|
||||
|
||||
f(std::move(file), std::move(contents.value()));
|
||||
|
|
Loading…
Reference in New Issue