summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvnflinger
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-01-07 05:58:04 +0100
committerLiam <byteslice@airmail.cc>2024-01-08 03:47:41 +0100
commitea710e652398f0646aeb1a1cdf78cee9691440e8 (patch)
treec2f6495907b42ade4416c51c2781734d4a3e4313 /src/core/hle/service/nvnflinger
parentvi: fix name of nvnflinger (diff)
downloadyuzu-ea710e652398f0646aeb1a1cdf78cee9691440e8.tar
yuzu-ea710e652398f0646aeb1a1cdf78cee9691440e8.tar.gz
yuzu-ea710e652398f0646aeb1a1cdf78cee9691440e8.tar.bz2
yuzu-ea710e652398f0646aeb1a1cdf78cee9691440e8.tar.lz
yuzu-ea710e652398f0646aeb1a1cdf78cee9691440e8.tar.xz
yuzu-ea710e652398f0646aeb1a1cdf78cee9691440e8.tar.zst
yuzu-ea710e652398f0646aeb1a1cdf78cee9691440e8.zip
Diffstat (limited to 'src/core/hle/service/nvnflinger')
-rw-r--r--src/core/hle/service/nvnflinger/nvnflinger.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/nvnflinger/nvnflinger.cpp b/src/core/hle/service/nvnflinger/nvnflinger.cpp
index aa8aaa2d9..0469110e8 100644
--- a/src/core/hle/service/nvnflinger/nvnflinger.cpp
+++ b/src/core/hle/service/nvnflinger/nvnflinger.cpp
@@ -223,7 +223,8 @@ Result Nvnflinger::FindVsyncEvent(Kernel::KReadableEvent** out_vsync_event, u64
return VI::ResultNotFound;
}
- return display->GetVSyncEvent(out_vsync_event);
+ *out_vsync_event = display->GetVSyncEvent();
+ return ResultSuccess;
}
VI::Display* Nvnflinger::FindDisplay(u64 display_id) {