From 57465b2892014898fcc93a8dbb7607171db40cba Mon Sep 17 00:00:00 2001 From: Dan McCarthy Date: Mon, 27 Nov 2023 17:16:20 -0600 Subject: [PATCH] Qt: Clarifies wording of Patch log for disabling duplicate patch Adds a better worded log statement for informing the user that a patch with a duplicate name was found and not loaded to avoid conflict. The common expected reason this can happen is a bundled patch having the same name as a /patches/ pnach patch having the same name. By default it will prioritize the folder patch over the bundled patch. Makes it more clear/less confusing in phrasing. --- pcsx2/Patch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Patch.cpp b/pcsx2/Patch.cpp index 293f4fc43d..c01c99c3ef 100644 --- a/pcsx2/Patch.cpp +++ b/pcsx2/Patch.cpp @@ -480,7 +480,7 @@ void Patch::ExtractPatchInfo(PatchInfoList* dst, const std::string& pnach_data, } else { - Console.WriteLn(Color_Gray, fmt::format("Patch: Skipped reading patch '{}' due patch with duplicate name being loaded.", current_patch.name)); + Console.WriteLn(Color_Gray, fmt::format("Patch: Skipped reading patch '{}' since with duplicate name was already loaded.", current_patch.name)); } } current_patch = {};