Skip to content

Commit

Permalink
Qt: Clarifies wording of Patch log for disabling duplicate patch
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Daniel-McCarthy committed Nov 27, 2023
1 parent 8b956f8 commit dd48eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/Patch.cpp
Original file line number Diff line number Diff line change
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 '{}' 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 = {};
Expand Down

0 comments on commit dd48eaa

Please sign in to comment.