mirror of https://github.com/PCSX2/pcsx2.git
USB: Improve some cryptic warnings. (#4046)
This commit is contained in:
parent
232c4b482a
commit
17d5f8985d
|
@ -62,7 +62,7 @@ namespace usb_hid
|
|||
|
||||
if (fd < 0)
|
||||
{
|
||||
Console.Warning("Unable to open device");
|
||||
Console.Warning("Evdev: Unable to open device: %s", str.str().c_str());
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
@ -73,7 +73,7 @@ namespace usb_pad
|
|||
|
||||
if (fd < 0)
|
||||
{
|
||||
Console.Warning("Unable to open device");
|
||||
Console.Warning("Evdev: Unable to open device: %s", path.c_str());
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -164,7 +164,7 @@ namespace usb_pad
|
|||
|
||||
if (fd < 0)
|
||||
{
|
||||
Console.Warning("Unable to open device");
|
||||
Console.Warning("Evdev: Unable to open device: %s", path.c_str());
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ namespace usb_pad
|
|||
|
||||
if (fd < 0)
|
||||
{
|
||||
Console.Warning("Unable to open device");
|
||||
Console.Warning("Joydev: Unable to open device: %s", path.c_str());
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue