Some CI fixes

This commit is contained in:
Hamish Milne 2019-12-27 22:45:00 +00:00 committed by zhupengfei
parent 7b846ffa98
commit d6862c2fca
2 changed files with 4 additions and 6 deletions

View file

@ -213,8 +213,8 @@ System::ResultStatus System::Init(Frontend::EmuWindow& emu_window, u32 system_mo
timing = std::make_unique<Timing>();
kernel = std::make_unique<Kernel::KernelSystem>(
*memory, *timing, [this] { PrepareReschedule(); }, system_mode);
kernel = std::make_unique<Kernel::KernelSystem>(*memory, *timing,
[this] { PrepareReschedule(); }, system_mode);
if (Settings::values.use_cpu_jit) {
#ifdef ARCHITECTURE_x86_64