mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
Warning fixes
This commit is contained in:
parent
e7fd84e031
commit
b49a1f27eb
63 changed files with 165 additions and 208 deletions
|
|
@ -124,7 +124,8 @@ std::string CgBinaryDisasm::GetSRCDisasm(const u32 n)
|
|||
switch (src[n].reg_type)
|
||||
{
|
||||
case 1: //temp
|
||||
ret += "R" + std::to_string(src[n].tmp_src);
|
||||
ret += 'R';
|
||||
ret += std::to_string(src[n].tmp_src);
|
||||
break;
|
||||
case 2: //input
|
||||
if (d1.input_src < reg_table.size())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue