scheduler: Cleanup based on PR feedback.

This commit is contained in:
bunnei 2018-02-19 16:46:42 -05:00
parent ac81c02ed9
commit 8db80d8389
3 changed files with 4 additions and 5 deletions

View file

@ -154,7 +154,7 @@ System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) {
break;
}
scheduler = std::make_unique<Kernel::Scheduler>(cpu_core);
scheduler = std::make_unique<Kernel::Scheduler>(cpu_core.get());
gpu_core = std::make_unique<Tegra::GPU>();
telemetry_session = std::make_unique<Core::TelemetrySession>();