mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 23:11:25 +12:00
C-style cast cleanup V
This commit is contained in:
parent
46ca39ec4d
commit
185c067d5b
44 changed files with 439 additions and 435 deletions
|
@ -1726,7 +1726,7 @@ void Emulator::Resume()
|
|||
{
|
||||
if (vm::check_addr(i))
|
||||
{
|
||||
if (auto& data = *(be_t<u32>*)(vm::g_stat_addr + i))
|
||||
if (auto& data = *reinterpret_cast<be_t<u32>*>(vm::g_stat_addr + i))
|
||||
{
|
||||
dis_asm.dump_pc = i;
|
||||
dis_asm.disasm(i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue