do r3967 in a better way (only turn on fpAccurateFcmp), don't force the other fpu ops into interpreter all the time

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3968 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-08-12 04:37:13 +00:00
parent b2dd5c1cd6
commit 70f5d17d43
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ void SCoreStartupParameter::LoadDefaults()
bRunCompareServer = false;
bDSPThread = true;
bLockThreads = true;
bEnableFPRF = true;
bEnableFPRF = false;
bWii = false;
SelectedLanguage = 0;
iTLBHack = 0;

View File

@ -210,7 +210,7 @@ void Jit64::Init()
jo.enableFastMem = false;
#endif
jo.assumeFPLoadFromMem = true;
jo.fpAccurateFcmp = Core::GetStartupParameter().bEnableFPRF;
jo.fpAccurateFcmp = true;
jo.optimizeGatherPipe = true;
jo.fastInterrupts = false;
jo.accurateSinglePrecision = true;