mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 10:18:40 +12:00
C-style cast cleanup II
This commit is contained in:
parent
5b9df53c13
commit
ad9c9f0183
18 changed files with 314 additions and 308 deletions
|
@ -5,7 +5,7 @@ const spu_decoder<SPUDisAsm> s_spu_disasm;
|
|||
|
||||
u32 SPUDisAsm::disasm(u32 pc)
|
||||
{
|
||||
const u32 op = *(be_t<u32>*)(offset + pc);
|
||||
const u32 op = *reinterpret_cast<const be_t<u32>*>(offset + pc);
|
||||
(this->*(s_spu_disasm.decode(op)))({ op });
|
||||
return 4;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue