Merge pull request #3486 from lioncash/jitinterface

JitInterface: Get rid of a global variable
This commit is contained in:
Pierre Bourdon 2016-01-09 22:15:45 +01:00
commit 529e04b009
2 changed files with 1 additions and 5 deletions

View File

@ -34,7 +34,6 @@
#endif
static bool bFakeVMEM = false;
bool bMMU = false;
namespace JitInterface
{
@ -45,8 +44,7 @@ namespace JitInterface
}
CPUCoreBase *InitJitCore(int core)
{
bMMU = SConfig::GetInstance().bMMU;
bFakeVMEM = !bMMU;
bFakeVMEM = !SConfig::GetInstance().bMMU;
CPUCoreBase *ptr = nullptr;
switch (core)

View File

@ -44,5 +44,3 @@ namespace JitInterface
void Shutdown();
}
extern bool bMMU;