GLFW2 Brazilian keyboard problem

Monkey Forums/Monkey Bug Reports/GLFW2 Brazilian keyboard problem

SLotman(Posted 2015) [#1]
Just to let you know... on Brazilian keyboard with have the BRASCII standard, and it includes the letter "Ç" (cedil) into the common layout (similar to US layout, but the Ç sits besides the "L" key)

Monkey won't recognize the key on GLFW2 - haven't tested in HTML5 yet, or in Mojo2/GLFW3.

To fix this in GLFW2, just open glfwgame.cpp, on int BBGlfwGame::TransKey( int key ) just add in the huge "switch/case":
case 199: return 199;
case 231: return 231;

This will let you read both lowercase (231) and upcase (199) cedil key.