From 464aeecef8861285e04d27873fdf5ebaaab57bdd Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Fri, 23 Oct 2015 19:33:51 +0200 Subject: [PATCH] EE-rec: use uptr for function pointer Avoid potential issue on 64 bits port --- pcsx2/x86/BaseblockEx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/x86/BaseblockEx.h b/pcsx2/x86/BaseblockEx.h index a564665610..eb0eec5a4e 100644 --- a/pcsx2/x86/BaseblockEx.h +++ b/pcsx2/x86/BaseblockEx.h @@ -22,7 +22,7 @@ // addressable memory. Yay! struct BASEBLOCK { - u32 m_pFnptr; + uptr m_pFnptr; const __inline uptr GetFnptr() const { return m_pFnptr; } void __inline SetFnptr( uptr ptr ) { m_pFnptr = ptr; }