Browse Source
Merge pull request #957 from lioncash/event
nvflinger: Correct typo in name of composition event
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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); |
|
|
|
}); |
|
|
|
|