EE-rec: use uptr for function pointer

Avoid potential issue on 64 bits port
This commit is contained in:
Gregory Hainaut 2015-10-23 19:33:51 +02:00
parent 3d5393a0e7
commit 464aeecef8
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
// addressable memory. Yay! // addressable memory. Yay!
struct BASEBLOCK struct BASEBLOCK
{ {
u32 m_pFnptr; uptr m_pFnptr;
const __inline uptr GetFnptr() const { return m_pFnptr; } const __inline uptr GetFnptr() const { return m_pFnptr; }
void __inline SetFnptr( uptr ptr ) { m_pFnptr = ptr; } void __inline SetFnptr( uptr ptr ) { m_pFnptr = ptr; }