Skip to content

Commit

Permalink
Qt: Fix console warning about hiding bundled patches
Browse files Browse the repository at this point in the history
Fixes syntax error with console write format to display warning when bundled patches are hidden due to unlabeled patches being loaded.
  • Loading branch information
Daniel-McCarthy committed Nov 26, 2023
1 parent d2eebc0 commit 95987b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/Patch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()));
Expand Down

0 comments on commit 95987b7

Please sign in to comment.