mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-13 18:39:57 +01:00
Fix incorrect syntax in construction of ARM_DynCom
This commit is contained in:
parent
5acb2eee91
commit
3783ac9f49
@ -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<ARM_DynCom>(this, *memory, USER32MODE, i, timing->GetTimer(i)));
|
||||
std::make_shared<ARM_DynCom>(*this, *memory, USER32MODE, i, timing->GetTimer(i)));
|
||||
}
|
||||
LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available");
|
||||
#endif
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user