Browse Source

nvflinger: Correct typo in name of composition event

nce_cpp
Lioncash 7 years ago
parent
commit
64e8d3fd3d
  1. 2
      src/core/hle/service/nvflinger/nvflinger.cpp

2
src/core/hle/service/nvflinger/nvflinger.cpp

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

Loading…
Cancel
Save