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
|
|
@ -62,7 +62,7 @@ std::string CgBinaryDisasm::GetMask() const
|
|||
|
||||
std::string CgBinaryDisasm::AddRegDisAsm(u32 index, int fp16) const
|
||||
{
|
||||
return std::string(fp16 ? "H" : "R") + std::to_string(index);
|
||||
return (fp16 ? 'H' : 'R') + std::to_string(index);
|
||||
}
|
||||
|
||||
std::string CgBinaryDisasm::AddConstDisAsm()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue