mirror of https://github.com/PCSX2/pcsx2.git
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.
This commit is contained in:
parent
8a95eecf60
commit
57465b2892
|
@ -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 = {};
|
||||
|
|
Loading…
Reference in New Issue