From 5c123f3183be30bb61cc9b3b9037956c1ee11d09 Mon Sep 17 00:00:00 2001 From: chaoticgd <43898262+chaoticgd@users.noreply.github.com> Date: Mon, 15 Dec 2025 18:27:18 +0000 Subject: [PATCH] Patch: Fix bug causing the UI to show the wrong place value --- pcsx2/Patch.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcsx2/Patch.cpp b/pcsx2/Patch.cpp index 2bc0fa0ffa..f5fc66dd1c 100644 --- a/pcsx2/Patch.cpp +++ b/pcsx2/Patch.cpp @@ -553,7 +553,7 @@ void Patch::ExtractPatchInfo(std::vector* dst, const std::string& pna (*num_unlabelled_patches)++; // Try to extract the place value of the patch lines so we can - // display them in the GUI if they all match. TODO: Don't duplicate + // display it in the GUI if they all match. TODO: Don't duplicate // all this parsing logic twice. if (unknown_place) continue; @@ -571,6 +571,7 @@ void Patch::ExtractPatchInfo(std::vector* dst, const std::string& pna // place values. current_patch.place = std::nullopt; unknown_place = true; + continue; } current_patch.place = place;