Made character unsigned.

This commit is contained in:
Camilla Berglund
2013-02-25 17:02:28 +01:00
parent dfc48d7170
commit 182e0afe25
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -591,7 +591,7 @@ void _glfwInputKey(_GLFWwindow* window, int key, int action);
* @param[in] character The Unicode code point of the input character.
* @ingroup event
*/
void _glfwInputChar(_GLFWwindow* window, int character);
void _glfwInputChar(_GLFWwindow* window, unsigned int character);
/*! @brief Notifies shared code of a scroll event.
* @param[in] window The window that received the event.