diff --git a/pcsx2/Linux/LnxSysExec.cpp b/pcsx2/Linux/LnxSysExec.cpp index b0536465d8..4fb0bbbf77 100644 --- a/pcsx2/Linux/LnxSysExec.cpp +++ b/pcsx2/Linux/LnxSysExec.cpp @@ -393,7 +393,7 @@ namespace HostSys // make sure base and size are aligned to the system page size: size = (size + m_pagemask) & ~m_pagemask; - baseaddr = (void*)( ((uptr)baseaddr) & ~mpagemask ); + baseaddr = (void*)( ((uptr)baseaddr) & ~m_pagemask ); switch( mode ) {