aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvnflinger
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-01-09 11:15:56 -0600
committerGitHub <noreply@github.com>2024-01-09 11:15:56 -0600
commit23c11e50f968558710c29154bd0d2c18cbe5ae92 (patch)
tree0ede4d6486061af3bcc2f6636c486420d27a9e4f /src/core/hle/service/nvnflinger
parent5fde5e62a83178581749cfc45f1d768daf7ab3e7 (diff)
parentea710e652398f0646aeb1a1cdf78cee9691440e8 (diff)
Merge pull request #12609 from liamwhite/wrong-name-again
vi: minor cleanups
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) {