diff options
author | pontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-05-25 09:46:37 +0000 |
---|---|---|
committer | pontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-05-25 09:46:37 +0000 |
commit | 0a581e3bf3cb184be828b58a2c6bbd64a568a4d8 (patch) | |
tree | ee983c70a8bc17d12eb4d8d73453351ed3a0e983 /input | |
parent | ac46b4486bb52f043b078197a78a7df16cca969d (diff) |
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6184 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input')
-rw-r--r-- | input/input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/input/input.c b/input/input.c index 100a36c5bd..88e3ae0206 100644 --- a/input/input.c +++ b/input/input.c @@ -625,13 +625,13 @@ mp_input_get_cmd_from_keys(int n,int* keys, int paused) { cmd = mp_input_find_bind_for_key(def_cmd_binds,n,keys); if(cmd == NULL) { - mp_msg(MSGT_INPUT,MSGL_ERR,"No bind found for key %s",mp_input_get_key_name(keys[0])); + mp_msg(MSGT_INPUT,MSGL_WARN,"No bind found for key %s",mp_input_get_key_name(keys[0])); if(n > 1) { int s; for(s=1; s < n; s++) - mp_msg(MSGT_INPUT,MSGL_ERR,"-%s",mp_input_get_key_name(keys[s])); + mp_msg(MSGT_INPUT,MSGL_WARN,"-%s",mp_input_get_key_name(keys[s])); } - mp_msg(MSGT_INPUT,MSGL_ERR," \n"); + mp_msg(MSGT_INPUT,MSGL_WARN," \n"); return NULL; } ret = mp_input_parse_cmd(cmd); |