Fix confusing legacy parameter names

This commit is contained in:
Camilla Berglund
2016-01-27 03:25:21 +01:00
parent 2cc6caf182
commit d0649e6868
2 changed files with 36 additions and 36 deletions
+3 -3
View File
@@ -1634,8 +1634,8 @@ GLFWAPI void glfwDefaultWindowHints(void);
* glfwWindowHint or @ref glfwDefaultWindowHints, or until the library is
* terminated.
*
* @param[in] target The [window hint](@ref window_hints) to set.
* @param[in] hint The new value of the window hint.
* @param[in] hint The [window hint](@ref window_hints) to set.
* @param[in] value The new value of the window hint.
*
* @par Thread Safety
* This function must only be called from the main thread.
@@ -1647,7 +1647,7 @@ GLFWAPI void glfwDefaultWindowHints(void);
*
* @ingroup window
*/
GLFWAPI void glfwWindowHint(int target, int hint);
GLFWAPI void glfwWindowHint(int hint, int value);
/*! @brief Creates a window and its associated context.
*