From: notaz Date: Wed, 4 Mar 2009 22:06:40 +0000 (+0000) Subject: bugfix2 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf3c44f4850c0804e0bf63964c1291b18549d996;p=libpicofe.git bugfix2 git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@643 be3aeb3a-fb24-0410-a615-afba39da0efa --- diff --git a/common/input.c b/common/input.c index 1dae2bd..0f6b6e4 100644 --- a/common/input.c +++ b/common/input.c @@ -426,9 +426,10 @@ const char *in_get_dev_name(int dev_id, int must_be_active, int skip_pfix) return NULL; name = in_devices[dev_id].name; - if (name == NULL) - return NULL; + if (name == NULL || !skip_pfix) + return name; + /* skip prefix */ tmp = strchr(name, ':'); if (tmp != NULL) name = tmp + 1;