[Mplayer-cvslog] CVS: main/input input.c,1.33,1.34
Zoltan Ponekker
pontscho at mplayerhq.hu
Sat May 25 11:46:40 CEST 2002
Update of /cvsroot/mplayer/main/input
In directory mail:/var/tmp.root/cvs-serv4198/input
Modified Files:
input.c
Log Message:
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
Index: input.c
===================================================================
RCS file: /cvsroot/mplayer/main/input/input.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- input.c 20 May 2002 03:25:22 -0000 1.33
+++ input.c 25 May 2002 09:46:37 -0000 1.34
@@ -625,13 +625,13 @@
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);
More information about the MPlayer-cvslog
mailing list