From e6627c5e78b367c4e5b75899d36d102fb96c8436 Mon Sep 17 00:00:00 2001 From: "Jake.Stine" Date: Sat, 16 May 2009 21:07:30 +0000 Subject: [PATCH] Linux: Typo fix from prev commit. >_< git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1206 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/Linux/LnxSysExec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) {