From 253bd1aea354ecf9f48145826b11841644cf94a5 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sat, 5 Nov 2016 15:44:57 +0100 Subject: [PATCH] linux compilation fix of previous iop change --- pcsx2/x86/iR3000A.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/x86/iR3000A.cpp b/pcsx2/x86/iR3000A.cpp index ed9e3fde60..352761c5a5 100644 --- a/pcsx2/x86/iR3000A.cpp +++ b/pcsx2/x86/iR3000A.cpp @@ -1110,7 +1110,7 @@ static void __fastcall iopRecRecompile( const u32 startpc ) _initX86regs(); if ((psxHu32(HW_ICFG) & 8) && (HWADDR(startpc) == 0xa0 || HWADDR(startpc) == 0xb0 || HWADDR(startpc) == 0xc0)) { - xFastCall(psxBiosCall); + xFastCall((void*)psxBiosCall); xTEST(al, al); xJNZ(iopDispatcherReg); }