diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-07 21:56:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-07 21:56:51 +0200 |
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 yuzu-7ed8565978636e285ce4659a744eae0beeb64149.tar.gz yuzu-7ed8565978636e285ce4659a744eae0beeb64149.tar.bz2 yuzu-7ed8565978636e285ce4659a744eae0beeb64149.tar.lz yuzu-7ed8565978636e285ce4659a744eae0beeb64149.tar.xz yuzu-7ed8565978636e285ce4659a744eae0beeb64149.tar.zst yuzu-7ed8565978636e285ce4659a744eae0beeb64149.zip |
Diffstat (limited to '')
-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() { // 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); }); |