From cc628250813068f720f59b6191cedb76cda2057d Mon Sep 17 00:00:00 2001 From: Dan McCarthy Date: Sat, 25 Nov 2023 23:51:01 -0600 Subject: [PATCH] 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. --- pcsx2/Patch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Patch.cpp b/pcsx2/Patch.cpp index 715b8cb75b..365aab2866 100644 --- a/pcsx2/Patch.cpp +++ b/pcsx2/Patch.cpp @@ -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()));