fix formatting & styling
This commit is contained in:
parent
8904397685
commit
e861204078
@ -88,7 +88,7 @@ namespace Ryujinx.Input.SDL2
|
|||||||
|
|
||||||
//if (SDL_GameControllerHasLED(_gamepadHandle))
|
//if (SDL_GameControllerHasLED(_gamepadHandle))
|
||||||
{
|
{
|
||||||
_setControllerLedColor("000000");
|
SetLedColor("000000");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Enable motion tracking
|
// Enable motion tracking
|
||||||
@ -106,7 +106,7 @@ namespace Ryujinx.Input.SDL2
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void _setControllerLedColor(string hex)
|
public void SetLedColor(string hex)
|
||||||
{
|
{
|
||||||
ulong LEDcolor = Convert.ToUInt64(hex, 16);
|
ulong LEDcolor = Convert.ToUInt64(hex, 16);
|
||||||
byte red = (byte)((LEDcolor >> 16) % 256);
|
byte red = (byte)((LEDcolor >> 16) % 256);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user