mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 06:32:48 +00:00
Merge pull request #12557 from grant2258/logging
fix up logging that can confuse users
This commit is contained in:
commit
94e4b1883a
@ -479,7 +479,7 @@ static void udev_handle_mouse(void *data,
|
||||
}
|
||||
}
|
||||
|
||||
static bool udev_input_add_device(udev_input_t *udev,
|
||||
static int udev_input_add_device(udev_input_t *udev,
|
||||
enum udev_input_dev_type type, const char *devnode, device_handle_cb cb)
|
||||
{
|
||||
unsigned char keycaps[(KEY_MAX / 8) + 1];
|
||||
@ -518,7 +518,7 @@ static bool udev_input_add_device(udev_input_t *udev,
|
||||
if (type == UDEV_INPUT_MOUSE || type == UDEV_INPUT_TOUCHPAD )
|
||||
{
|
||||
if (ioctl(fd, EVIOCGBIT(EV_KEY, sizeof (keycaps)), keycaps) == -1)
|
||||
return 0; /* gotta have some buttons! :) */
|
||||
return -1; /* gotta have some buttons! return -1 to skip error logging for this:) */
|
||||
|
||||
if (ioctl(fd, EVIOCGABS(ABS_X), &absinfo) >= 0)
|
||||
{
|
||||
@ -1216,8 +1216,8 @@ static bool open_devices(udev_input_t *udev,
|
||||
struct udev_list_entry *devs = NULL;
|
||||
struct udev_list_entry *item = NULL;
|
||||
struct udev_enumerate *enumerate = udev_enumerate_new(udev->udev);
|
||||
int device_index = 0;
|
||||
|
||||
static int device_keyboard = 0;
|
||||
static int device_mouse = 0;
|
||||
if (!enumerate)
|
||||
return false;
|
||||
|
||||
@ -1240,20 +1240,32 @@ static bool open_devices(udev_input_t *udev,
|
||||
|
||||
if (fd != -1)
|
||||
{
|
||||
bool check = udev_input_add_device(udev, type, devnode, cb);
|
||||
|
||||
if (!check)
|
||||
RARCH_DBG("[udev] udev_input_add_device SKIPPED : %s (%s).\n",
|
||||
int check = udev_input_add_device(udev, type, devnode, cb);
|
||||
if (!check && check != -1 )
|
||||
RARCH_DBG("[udev] udev_input_add_device error : %s (%s).\n",
|
||||
devnode, strerror(errno));
|
||||
else
|
||||
else if (check != -1 && check != 0)
|
||||
{
|
||||
char ident[255];
|
||||
if (ioctl(fd, EVIOCGNAME(sizeof(ident)), ident) < 0)
|
||||
ident[0] = '\0';
|
||||
RARCH_LOG("[udev]: Added Device %s %s (%s).\n",
|
||||
type == UDEV_INPUT_KEYBOARD ? "Keyboard" : "Mouse",
|
||||
if ( type == UDEV_INPUT_KEYBOARD)
|
||||
{
|
||||
RARCH_LOG("[udev]: Added Device Keyboard#%d %s (%s) .\n",
|
||||
device_keyboard,
|
||||
ident,
|
||||
devnode);
|
||||
device_keyboard++;
|
||||
}
|
||||
else
|
||||
{
|
||||
RARCH_LOG("[udev]: Added Device mouse#%d %s (%s) .\n",
|
||||
device_mouse,
|
||||
ident,
|
||||
devnode);
|
||||
device_mouse++;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
(void)check;
|
||||
|
Loading…
x
Reference in New Issue
Block a user