Skip to content

Commit

Permalink
SdlJoystickDevice
Browse files Browse the repository at this point in the history
  • Loading branch information
nkast committed May 27, 2024
1 parent c515f4c commit 9e46299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MonoGame.Framework/Input/.SDL2/ConcreteJoystick.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ public class SdlJoystickDevice : JoystickDevice
{
public IntPtr Handle { get; private set; }

public SdlJoystickDevice(IntPtr sdlJoystick)
public SdlJoystickDevice(IntPtr handle)
: base()
{
this.Handle = sdlJoystick;
this.Handle = handle;
}
}

Expand Down

0 comments on commit 9e46299

Please sign in to comment.