From 0ecdb7b83efbb136f684c6763498827813d06f38 Mon Sep 17 00:00:00 2001 From: skidau Date: Thu, 8 Apr 2010 09:18:42 +0000 Subject: [PATCH] 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 --- Source/Core/DolphinWX/Src/BootManager.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Source/Core/DolphinWX/Src/BootManager.cpp b/Source/Core/DolphinWX/Src/BootManager.cpp index b6d93527ad..3b328d141b 100644 --- a/Source/Core/DolphinWX/Src/BootManager.cpp +++ b/Source/Core/DolphinWX/Src/BootManager.cpp @@ -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