summaryrefslogtreecommitdiffstats
path: root/video/out/x11_common.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-11-02 16:03:03 -0500
committerDudemanguy <random342@airmail.cc>2023-11-06 15:44:45 +0000
commitf629d7a2ff67902c2ac5ed1a91dd7ade5164e723 (patch)
tree7c696f007b987765df5dc4af445a5328ddbe2055 /video/out/x11_common.c
parent261f51b475e17459274b24ae8a0515d7ac969cd0 (diff)
downloadmpv-f629d7a2ff67902c2ac5ed1a91dd7ade5164e723.tar.bz2
mpv-f629d7a2ff67902c2ac5ed1a91dd7ade5164e723.tar.xz
present_sync: rename function to present_sync_update_values
This had to have been a mistake. It was just confusing.
Diffstat (limited to 'video/out/x11_common.c')
-rw-r--r--video/out/x11_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/x11_common.c b/video/out/x11_common.c
index a4498a60e0..f221471255 100644
--- a/video/out/x11_common.c
+++ b/video/out/x11_common.c
@@ -1328,7 +1328,7 @@ void vo_x11_check_events(struct vo *vo)
if (cookie->evtype == PresentCompleteNotify) {
XPresentCompleteNotifyEvent *present_event;
present_event = (XPresentCompleteNotifyEvent *)cookie->data;
- present_update_sync_values(x11->present,
+ present_sync_update_values(x11->present,
present_event->ust * 1000,
present_event->msc);
}