Fixed the bug where JITIL could not be selected in debugger mode.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5292 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
b0e8a67cf2
commit
0ecdb7b83e
|
@ -81,18 +81,11 @@ bool BootCore(const std::string& _rFilename)
|
|||
#if defined(HAVE_WX) && HAVE_WX
|
||||
if (main_frame->g_pCodeWindow)
|
||||
{
|
||||
//StartUp.bCPUThread = code_frame->UseDualCore();
|
||||
StartUp.iCPUCore = !main_frame->g_pCodeWindow->UseInterpreter();
|
||||
StartUp.bBootToPause = main_frame->g_pCodeWindow->BootToPause();
|
||||
StartUp.bAutomaticStart = main_frame->g_pCodeWindow->AutomaticStart();
|
||||
StartUp.bJITUnlimitedCache = main_frame->g_pCodeWindow->UnlimitedJITCache();
|
||||
StartUp.bJITBlockLinking = main_frame->g_pCodeWindow->JITBlockLinking();
|
||||
}
|
||||
else
|
||||
{
|
||||
//StartUp.bCPUThread = false;
|
||||
//StartUp.bUseJIT = true;
|
||||
}
|
||||
StartUp.bEnableDebugging = main_frame->g_pCodeWindow ? true : false; // RUNNING_DEBUG
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue