Skip to content

Commit

Permalink
Fix accessor indexes causing exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonscott committed Jun 15, 2016
1 parent c9b9b05 commit 5bc7aeb
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 5bc7aeb

Please sign in to comment.