These are required to be set to get JIT and JITIL working in OSX, will be looking in to it a bit to see why these break it, if I can

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4897 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Sonicadvance1 2010-01-19 20:59:18 +00:00
parent 832a616cb0
commit d70bb07580
1 changed files with 7 additions and 0 deletions

View File

@ -61,6 +61,13 @@ void SCoreStartupParameter::LoadDefaults()
bJITIntegerOff = false; bJITIntegerOff = false;
bJITPairedOff = false; bJITPairedOff = false;
bJITSystemRegistersOff = false; bJITSystemRegistersOff = false;
#ifdef __APPLE__
// These are required for the JIT cores to work in OSX
// Older revs (~4854) Only required LoadStorePaired to be turned off
// Newer revs (~4890) require both turned off
bJITLoadStoreOff = true;
bJITLoadStorePairedOff = true;
#endif
m_strName = "NONE"; m_strName = "NONE";
m_strUniqueID = "00000000"; m_strUniqueID = "00000000";