mirror of https://github.com/PCSX2/pcsx2.git
EE-rec: use uptr for function pointer
Avoid potential issue on 64 bits port
This commit is contained in:
parent
3d5393a0e7
commit
464aeecef8
|
@ -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; }
|
||||
|
|
Loading…
Reference in New Issue