[OpenTK] Fixed compilation error

This commit is contained in:
thefiddler 2014-04-30 08:45:27 +02:00
parent 965c8baa7f
commit 2632661d8a

View file

@ -54,7 +54,7 @@ namespace OpenTK
if (hotx < 0 || hotx >= Width || hoty < 0 || hoty >= Height)
throw new ArgumentOutOfRangeException();
x = xhot;
x = hotx;
y = hoty;
}
@ -64,7 +64,7 @@ namespace OpenTK
if (hotx < 0 || hotx >= Width || hoty < 0 || hoty >= Height)
throw new ArgumentOutOfRangeException();
x = xhot;
x = hotx;
y = hoty;
}