mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
rsx: Apply Clang-Tidy fix "readability-inconsistent-declaration-parameter-name"
This commit is contained in:
parent
c9b0a4afd0
commit
801fa0113f
9 changed files with 21 additions and 21 deletions
|
|
@ -48,15 +48,15 @@ std::string CgBinaryDisasm::GetScaMaskDisasm()
|
|||
return GetMaskDisasm(true);
|
||||
}
|
||||
|
||||
std::string CgBinaryDisasm::GetDSTDisasm(bool isSca)
|
||||
std::string CgBinaryDisasm::GetDSTDisasm(bool is_sca)
|
||||
{
|
||||
std::string ret;
|
||||
std::string mask = GetMaskDisasm(isSca);
|
||||
std::string mask = GetMaskDisasm(is_sca);
|
||||
|
||||
switch ((isSca && d3.sca_dst_tmp != 0x3f) ? 0x1f : d3.dst)
|
||||
switch ((is_sca && d3.sca_dst_tmp != 0x3f) ? 0x1f : d3.dst)
|
||||
{
|
||||
case 0x1f:
|
||||
ret += (isSca ? fmt::format("R%d", d3.sca_dst_tmp) : fmt::format("R%d", d0.dst_tmp)) + mask;
|
||||
ret += (is_sca ? fmt::format("R%d", d3.sca_dst_tmp) : fmt::format("R%d", d0.dst_tmp)) + mask;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue