Skip to content
This repository has been archived by the owner on Oct 30, 2019. It is now read-only.

Commit

Permalink
Buildfixes. Because.
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Mar 31, 2014
1 parent 6d87b6d commit ea25e90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MonoGame.Framework/Input/GamePadTriggers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ internal set

#region Private Variables

private float left
private float left;
private float right;

#endregion
Expand Down
4 changes: 2 additions & 2 deletions MonoGame.Framework/Input/Keyboard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public static KeyboardState GetState(PlayerIndex playerIndex)

#region Internal Static Methods

internal static void SetKeys(List<Keys> keys)
internal static void SetKeys(List<Keys> newKeys)
{
this.keys = keys;
keys = newKeys;
}

#endregion
Expand Down

0 comments on commit ea25e90

Please sign in to comment.