mirror of https://github.com/PCSX2/pcsx2.git
IOP Recompiler: Fix BIOS trace logging on 64bit
This commit is contained in:
parent
1b31eb9e4a
commit
45bb57a38c
|
@ -574,7 +574,12 @@ static void psxRecompileIrxImport()
|
|||
|
||||
if (SysTraceActive(IOP.Bios))
|
||||
{
|
||||
xPUSH((uptr)funcname);
|
||||
#ifdef __M_X86_64
|
||||
xMOV64(arg3reg, (uptr)funcname);
|
||||
#else
|
||||
xPUSH((uptr)funcname);
|
||||
#endif
|
||||
|
||||
xFastCall((void*)irxImportLog_rec, import_table, index);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue