Sfoglia il codice sorgente

nvflinger: Correct typo in name of composition event

Lioncash 8 anni fa
parent
commit
d3f64785d1
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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);
         });