mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-01 14:30:46 -07:00
Remove unneeded ".this"
This commit is contained in:
@ -13,14 +13,14 @@ namespace Ryujinx.HLE.Input
|
||||
|
||||
public HidControllerBase(HidControllerType controllerType, Switch device)
|
||||
{
|
||||
this.Device = device;
|
||||
Device = device;
|
||||
|
||||
HidControllerType = controllerType;
|
||||
}
|
||||
|
||||
public virtual void Connect(HidControllerId controllerId)
|
||||
{
|
||||
this.ControllerId = controllerId;
|
||||
ControllerId = controllerId;
|
||||
|
||||
Offset = Device.Hid.HidPosition + HidControllersOffset + (int)controllerId * HidControllerSize;
|
||||
|
||||
|
Reference in New Issue
Block a user