Browse Source

nvflinger: Correct typo in name of composition event

Lioncash 8 năm trước cách đây
mục cha
commit
d3f64785d1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/core/hle/service/nvflinger/nvflinger.cpp

+ 1 - 1
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);
         });