In the framework implementation in Ch 5 code, in KeyboardHandler.java the
onKey() function the two if statements which read
'if(keyCode > 0 && keyCode < 127)' exclude the values 0 and 127 which I
understand to be acceptable values the statement should be
'if(keyCode >= 0 && keyCode < 128)'
Original issue reported on code.google.com by michaelw...@gmail.com on 10 May 2011 at 3:08
Original issue reported on code.google.com by
michaelw...@gmail.com
on 10 May 2011 at 3:08