summaryrefslogtreecommitdiffstats
path: root/mpvcore/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-06 00:08:38 +0100
committerwm4 <wm4@nowhere>2013-11-06 00:08:38 +0100
commit3cfbe810383d8efd04e8c0b3ad47cfe73f69ca97 (patch)
tree704051ac3940c06429bd17dcc9b0c0270934440f /mpvcore/player
parent9dc0dfbd54349672c5948f323f8490b91d4b3a62 (diff)
downloadmpv-3cfbe810383d8efd04e8c0b3ad47cfe73f69ca97.tar.bz2
mpv-3cfbe810383d8efd04e8c0b3ad47cfe73f69ca97.tar.xz
input: remove unused key_down_event command
There's no real use-case for this, and is wasn't documented (didn't even appear on the "undocumented commands" list).
Diffstat (limited to 'mpvcore/player')
-rw-r--r--mpvcore/player/command.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/mpvcore/player/command.c b/mpvcore/player/command.c
index 05369470ff..be34d4e8f5 100644
--- a/mpvcore/player/command.c
+++ b/mpvcore/player/command.c
@@ -2940,10 +2940,6 @@ void run_command(MPContext *mpctx, mp_cmd_t *cmd)
#endif
break;
- case MP_CMD_KEYDOWN_EVENTS:
- mp_input_put_key(mpctx->input, cmd->args[0].v.i);
- break;
-
case MP_CMD_ENABLE_INPUT_SECTION:
mp_input_enable_section(mpctx->input, cmd->args[0].v.s,
cmd->args[1].v.i == 1 ? MP_INPUT_EXCLUSIVE : 0);