summaryrefslogtreecommitdiffstats
path: root/mpvcore
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2013-08-13 14:52:49 +0200
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2013-08-13 23:02:43 +0200
commit11dad6d44b7e969f32f00379cea514101a46a0ac (patch)
treeb744840786a09f00d507c74e435255eed579f320 /mpvcore
parent36586dd7b7ad0a9145ab28f0245a7f00227a7ce8 (diff)
downloadmpv-11dad6d44b7e969f32f00379cea514101a46a0ac.tar.bz2
mpv-11dad6d44b7e969f32f00379cea514101a46a0ac.tar.xz
macosx: remove platform specific input queue
Since last commit the input queue in the core is thread safe, so there is no need for all this platform specific stuff anymore.
Diffstat (limited to 'mpvcore')
-rw-r--r--mpvcore/input/input.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/mpvcore/input/input.c b/mpvcore/input/input.c
index ed3136a5d4..2685083ecc 100644
--- a/mpvcore/input/input.c
+++ b/mpvcore/input/input.c
@@ -1744,9 +1744,6 @@ static void read_events(struct input_ctx *ictx, int time)
static void read_all_events(struct input_ctx *ictx, int time)
{
getch2_poll();
-#ifdef CONFIG_COCOA
- cocoa_check_events();
-#endif
read_events(ictx, time);
}