mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-11 22:05:57 +00:00
Add description to joysticks opened from the legacy path.
This commit is contained in:
parent
1f11e3f38c
commit
912b04f333
|
@ -58,7 +58,8 @@ namespace OpenTK.Platform.X11
|
|||
JoystickDevice stick = OpenJoystick(JoystickPath, number++);
|
||||
if (stick != null)
|
||||
{
|
||||
stick.Description = String.Format("USB Joystick {0} ({1} axes, {2} buttons)", number, stick.Axis.Count, stick.Button.Count);
|
||||
stick.Description = String.Format("USB Joystick {0} ({1} axes, {2} buttons, {3})",
|
||||
number, stick.Axis.Count, stick.Button.Count, JoystickPath);
|
||||
sticks.Add(stick);
|
||||
}
|
||||
}
|
||||
|
@ -68,7 +69,11 @@ namespace OpenTK.Platform.X11
|
|||
{
|
||||
JoystickDevice stick = OpenJoystick(JoystickPathLegacy, number++);
|
||||
if (stick != null)
|
||||
{
|
||||
stick.Description = String.Format("USB Joystick {0} ({1} axes, {2} buttons, {3})",
|
||||
number, stick.Axis.Count, stick.Button.Count, JoystickPathLegacy);
|
||||
sticks.Add(stick);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue