Fixed VC++ warnings.

This commit is contained in:
Camilla Berglund
2013-03-08 14:19:40 +01:00
parent 6a7dbfee29
commit 3897a174b5
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -407,7 +407,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
case WM_CHAR:
{
_glfwInputChar(window, wParam);
_glfwInputChar(window, (unsigned int) wParam);
return 0;
}