Skip to content

Commit

Permalink
Merge pull request #171 from CoraleStudios/hotfix/fix-accessor-indexes
Browse files Browse the repository at this point in the history
[HOTFIX] Fix accessor indexes causing exception.
  • Loading branch information
Sharparam authored Jun 15, 2016
2 parents c9b9b05 + 5bc7aeb commit a0019b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Corale.Colore/Core/Keyboard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public Color this[Key key]
{
get
{
return _grid[row - 1, column - 1];
return _grid[row, column];
}

set
Expand Down

0 comments on commit a0019b0

Please sign in to comment.