From f0bf525cf42a3d9a606234c5dc8937d25c677030 Mon Sep 17 00:00:00 2001 From: Dan McCarthy Date: Tue, 28 Nov 2023 16:17:37 -0600 Subject: [PATCH] Qt: Addresses typo in duplicate Patch console log warning Fixed unintentionally non-sensical wording in log warning to inform the user that a patch was skipped over since a patch with the same name had already been loaded. --- pcsx2/Patch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/Patch.cpp b/pcsx2/Patch.cpp index 1a1f7cc9f7..fb7796f32b 100644 --- a/pcsx2/Patch.cpp +++ b/pcsx2/Patch.cpp @@ -285,7 +285,7 @@ u32 Patch::LoadPatchesFromString(PatchList* patch_list, const std::string& patch } else { - Console.WriteLn(Color_Gray, fmt::format("Patch: Skipped loading patch '{}' since with duplicate name was already loaded.", current_patch_group.name)); + Console.WriteLn(Color_Gray, fmt::format("Patch: Skipped loading patch '{}' since a patch with a duplicate name was already loaded.", current_patch_group.name)); } current_patch_group = {}; } @@ -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 '{}' since with duplicate name was already loaded.", current_patch.name)); + Console.WriteLn(Color_Gray, fmt::format("Patch: Skipped reading patch '{}' since a patch with a duplicate name was already loaded.", current_patch.name)); } } current_patch = {};