iop: fix 64 bits build

remove the offset which is useless
This commit is contained in:
Gregory Hainaut 2016-01-27 16:49:06 +01:00
parent ba62ce9e93
commit 41157ee3e9
1 changed files with 2 additions and 2 deletions

View File

@ -281,8 +281,8 @@ static void iIopDumpBlock( int startpc, u8 * ptr )
f2.Write( ptr, (uptr)x86Ptr - (uptr)ptr );
}
std::system( wxsFormat("objdump -D -b binary -mi386 -M intel --no-show-raw-insn --adjust-vma=%d %s >> %s; rm %s",
(u32)ptr, "mydump1", WX_STR(filename), "mydump1") );
std::system( wxsFormat("objdump -D -b binary -mi386 -M intel --no-show-raw-insn %s >> %s; rm %s",
"mydump1", WX_STR(filename), "mydump1") );
#endif
}