summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-04 06:13:23 +0100
committerbunnei <bunneidev@gmail.com>2018-01-04 06:13:23 +0100
commit3f8b9181b553e8af9bd93899832ddc2c8cf73e8b (patch)
tree00df941867db6c14f172f6eb4ed99964ac3bc5b3 /src/core/core.cpp
parentDownloadExternals: Use yuzu repo. (diff)
downloadyuzu-3f8b9181b553e8af9bd93899832ddc2c8cf73e8b.tar
yuzu-3f8b9181b553e8af9bd93899832ddc2c8cf73e8b.tar.gz
yuzu-3f8b9181b553e8af9bd93899832ddc2c8cf73e8b.tar.bz2
yuzu-3f8b9181b553e8af9bd93899832ddc2c8cf73e8b.tar.lz
yuzu-3f8b9181b553e8af9bd93899832ddc2c8cf73e8b.tar.xz
yuzu-3f8b9181b553e8af9bd93899832ddc2c8cf73e8b.tar.zst
yuzu-3f8b9181b553e8af9bd93899832ddc2c8cf73e8b.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp9
1 files changed, 1 insertions, 8 deletions
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 <utility>
#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<ARM_Dynarmic>();
- } else {
- cpu_core = std::make_unique<ARM_Unicorn>();
- }
-
+ cpu_core = std::make_unique<ARM_Unicorn>();
telemetry_session = std::make_unique<Core::TelemetrySession>();
CoreTiming::Init();