Renamed X11 keysym to Unicode conversion file.

This commit is contained in:
Camilla Berglund
2013-01-15 23:06:14 +01:00
parent 355af57b91
commit 121ce7fbd6
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ static int translateChar(XKeyEvent* event)
// Get X11 keysym
XLookupString(event, NULL, 0, &keysym, NULL);
// Convert to Unicode (see x11_keysym2unicode.c)
// Convert to Unicode (see x11_unicode.c)
return (int) _glfwKeySym2Unicode(keysym);
}