Re-used POSITION_* tokens for monitor position.

This commit is contained in:
Camilla Berglund
2013-01-17 21:56:02 +01:00
parent 2cea6e37cf
commit ac5fee4d20
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -323,9 +323,9 @@ GLFWAPI int glfwGetMonitorParam(GLFWmonitor* handle, int param)
return monitor->widthMM;
case GLFW_MONITOR_HEIGHT_MM:
return monitor->heightMM;
case GLFW_MONITOR_POS_X:
case GLFW_POSITION_X:
return monitor->positionX;
case GLFW_MONITOR_POS_Y:
case GLFW_POSITION_Y:
return monitor->positionY;
}