mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-24 00:29:57 +00:00
Fix one more PSPPointer function. Fixes #3897
This commit is contained in:
parent
9dc9c89918
commit
f69632a316
@ -394,7 +394,11 @@ struct PSPPointer
|
||||
|
||||
inline operator T*()
|
||||
{
|
||||
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
||||
return (T *)(Memory::base + (ptr & Memory::MEMVIEW32_MASK));
|
||||
#else
|
||||
return (T *)(Memory::base + ptr);
|
||||
#endif
|
||||
}
|
||||
|
||||
bool IsValid() const
|
||||
|
Loading…
Reference in New Issue
Block a user