Skip to content

Commit

Permalink
Qt: Addresses typo in duplicate Patch console log warning
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Daniel-McCarthy authored and stenzek committed Dec 4, 2023
1 parent 45758ad commit f0bf525
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcsx2/Patch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {};
}
Expand Down Expand Up @@ -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 = {};
Expand Down

0 comments on commit f0bf525

Please sign in to comment.