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:
skidau 2010-04-08 09:18:42 +00:00
parent b0e8a67cf2
commit 0ecdb7b83e
1 changed files with 0 additions and 7 deletions

View File

@ -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