From 3783ac9f496887dfb01337ffe0ed0346428560e4 Mon Sep 17 00:00:00 2001 From: PabloMK7 Date: Wed, 19 Mar 2025 11:58:08 +0100 Subject: [PATCH] Fix incorrect syntax in construction of ARM_DynCom --- src/core/core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/core.cpp b/src/core/core.cpp index b017dc413..f83dcf6c5 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -472,7 +472,7 @@ System::ResultStatus System::Init(Frontend::EmuWindow& emu_window, #else for (u32 i = 0; i < num_cores; ++i) { cpu_cores.push_back( - std::make_shared(this, *memory, USER32MODE, i, timing->GetTimer(i))); + std::make_shared(*this, *memory, USER32MODE, i, timing->GetTimer(i))); } LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available"); #endif