diff options
| author | 2018-08-07 15:56:51 -0400 | |
|---|---|---|
| committer | 2018-08-07 15:56:51 -0400 | |
| commit | 7ed8565978636e285ce4659a744eae0beeb64149 (patch) | |
| tree | 850956f68f615d0b590c93e188228b08a4ee3941 /src | |
| parent | Merge pull request #954 from lioncash/hid (diff) | |
| parent | nvflinger: Correct typo in name of composition event (diff) | |
| download | yuzu-7ed8565978636e285ce4659a744eae0beeb64149.tar.gz yuzu-7ed8565978636e285ce4659a744eae0beeb64149.tar.xz yuzu-7ed8565978636e285ce4659a744eae0beeb64149.zip | |
Merge pull request #957 from lioncash/event
nvflinger: Correct typo in name of composition event
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp index 1e287ab62..570aa8493 100644 --- a/src/core/hle/service/nvflinger/nvflinger.cpp +++ b/src/core/hle/service/nvflinger/nvflinger.cpp | |||
| @@ -34,7 +34,7 @@ NVFlinger::NVFlinger() { | |||
| 34 | 34 | ||
| 35 | // Schedule the screen composition events | 35 | // Schedule the screen composition events |
| 36 | composition_event = | 36 | composition_event = |
| 37 | CoreTiming::RegisterEvent("ScreenCompositioin", [this](u64 userdata, int cycles_late) { | 37 | CoreTiming::RegisterEvent("ScreenComposition", [this](u64 userdata, int cycles_late) { |
| 38 | Compose(); | 38 | Compose(); |
| 39 | CoreTiming::ScheduleEvent(frame_ticks - cycles_late, composition_event); | 39 | CoreTiming::ScheduleEvent(frame_ticks - cycles_late, composition_event); |
| 40 | }); | 40 | }); |