summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-07 15:56:51 -0400
committerGravatar GitHub2018-08-07 15:56:51 -0400
commit7ed8565978636e285ce4659a744eae0beeb64149 (patch)
tree850956f68f615d0b590c93e188228b08a4ee3941 /src
parentMerge pull request #954 from lioncash/hid (diff)
parentnvflinger: Correct typo in name of composition event (diff)
downloadyuzu-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.cpp2
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 });