diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index c7ceba0147..a10c8e826e 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -174,4 +174,4 @@ if (ARCHITECTURE_x86_64) arm/dynarmic/arm_dynarmic.h ) target_link_libraries(core PRIVATE dynarmic) -endif() \ No newline at end of file +endif() diff --git a/src/core/core.cpp b/src/core/core.cpp index 89afda8a4a..0ba44b1113 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -146,12 +146,12 @@ System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) { break; case Settings::CpuCore::Dynarmic: default: - #ifdef ARCHITECTURE_x86_64 - cpu_core = std::make_unique(); - #else - cpu_core = std::make_unique(); - LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available"); - #endif +#ifdef ARCHITECTURE_x86_64 + cpu_core = std::make_unique(); +#else + cpu_core = std::make_unique(); + LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available"); +#endif break; } @@ -200,4 +200,4 @@ void System::Shutdown() { LOG_DEBUG(Core, "Shutdown OK"); } -} // namespace Core \ No newline at end of file +} // namespace Core