Clarify cursor position variable names

This commit is contained in:
Camilla Berglund
2016-05-24 12:23:58 +02:00
parent 72b3a7a59f
commit 0e846883bf
10 changed files with 50 additions and 47 deletions
+2 -2
View File
@@ -118,9 +118,9 @@ typedef struct _GLFWwindowX11
int xpos, ypos;
// The last received cursor position, regardless of source
double cursorPosX, cursorPosY;
double lastCursorPosX, lastCursorPosY;
// The last position the cursor was warped to by GLFW
int warpPosX, warpPosY;
int warpCursorPosX, warpCursorPosY;
// The information from the last KeyPress event
struct {