nvflinger: Correct typo in name of composition event

This commit is contained in:
Lioncash 2018-08-07 09:03:05 -04:00
parent 44f76e2cfd
commit 64e8d3fd3d

View file

@ -31,7 +31,7 @@ NVFlinger::NVFlinger() {
// Schedule the screen composition events // Schedule the screen composition events
composition_event = composition_event =
CoreTiming::RegisterEvent("ScreenCompositioin", [this](u64 userdata, int cycles_late) { CoreTiming::RegisterEvent("ScreenComposition", [this](u64 userdata, int cycles_late) {
Compose(); Compose();
CoreTiming::ScheduleEvent(frame_ticks - cycles_late, composition_event); CoreTiming::ScheduleEvent(frame_ticks - cycles_late, composition_event);
}); });