summaryrefslogtreecommitdiffstats
path: root/video/out/mac/common.swift
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/mac/common.swift')
-rw-r--r--video/out/mac/common.swift5
1 files changed, 3 insertions, 2 deletions
diff --git a/video/out/mac/common.swift b/video/out/mac/common.swift
index be1e628801..7fcc4b607a 100644
--- a/video/out/mac/common.swift
+++ b/video/out/mac/common.swift
@@ -22,6 +22,7 @@ class Common: NSObject {
var option: OptionHelper?
var input: InputHelper?
var log: LogHelper
+ var vo: UnsafeMutablePointer<vo>?
let queue: DispatchQueue = DispatchQueue(label: "io.mpv.queue")
@objc var window: Window?
@@ -483,11 +484,11 @@ class Common: NSObject {
events |= ev
eventsLock.unlock()
- guard let vout = option?.vo else {
+ guard let vo = vo else {
log.sendWarning("vo nil in flagEvents")
return
}
- vo_wakeup(vout)
+ vo_wakeup(vo)
}
func checkEvents() -> Int {