Renamed internal cursor position in preparation of new API.

This commit is contained in:
Camilla Berglund
2011-10-13 15:20:59 +02:00
parent 851f510d4b
commit 2660b27cf3
5 changed files with 25 additions and 23 deletions
+2 -2
View File
@@ -688,8 +688,8 @@ int _glfwPlatformOpenWindow(_GLFWwindow* window,
glfwMakeContextCurrent(window);
NSPoint point = [[NSCursor currentCursor] hotSpot];
window->mousePosX = point.x;
window->mousePosY = point.y;
window->cursorPosX = point.x;
window->cursorPosY = point.y;
window->windowNoResize = wndconfig->windowNoResize;