From 5e450388f99a11bb2a145a500e5cdf927dcdf83d Mon Sep 17 00:00:00 2001 From: Dan McCarthy Date: Sun, 26 Nov 2023 00:18:02 -0600 Subject: [PATCH] Qt: Fix final return condition for PatchStringHasUnlabelledPatch --- pcsx2/Patch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Patch.cpp b/pcsx2/Patch.cpp index 365aab2866..997c8f1cfc 100644 --- a/pcsx2/Patch.cpp +++ b/pcsx2/Patch.cpp @@ -449,8 +449,8 @@ bool Patch::PatchStringHasUnlabelledPatch(std::string pnach_data) foundPatch = true; } - return false; } + return false; } void Patch::ExtractPatchInfo(PatchInfoList* dst, const std::string& pnach_data, u32* num_unlabelled_patches)