From 3f8b9181b553e8af9bd93899832ddc2c8cf73e8b Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 4 Jan 2018 00:13:23 -0500 Subject: unicorn: Use for arm interface on Windows. --- src/core/core.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/core/core.cpp') diff --git a/src/core/core.cpp b/src/core/core.cpp index 886cb0972..d7e2450ff 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -6,8 +6,6 @@ #include #include "audio_core/audio_core.h" #include "common/logging/log.h" -#include "core/arm/arm_interface.h" -#include "core/arm/dynarmic/arm_dynarmic.h" #include "core/arm/unicorn/arm_unicorn.h" #include "core/core.h" #include "core/core_timing.h" @@ -140,12 +138,7 @@ void System::Reschedule() { System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) { LOG_DEBUG(HW_Memory, "initialized OK"); - if (Settings::values.use_cpu_jit) { - cpu_core = std::make_unique(); - } else { - cpu_core = std::make_unique(); - } - + cpu_core = std::make_unique(); telemetry_session = std::make_unique(); CoreTiming::Init(); -- cgit v1.2.3