diff input/input.c @ 6183:a4bbda72ce86

fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
author pontscho
date Sat, 25 May 2002 09:46:37 +0000
parents 523014df7d32
children ee65527096c2
line wrap: on
line diff
--- a/input/input.c	Sat May 25 08:48:05 2002 +0000
+++ b/input/input.c	Sat May 25 09:46:37 2002 +0000
@@ -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);