remove a handful of warnings

This commit is contained in:
Ben Fry
2014-02-06 23:31:58 -05:00
parent 9803d7958a
commit 434d8138cc
5 changed files with 21 additions and 9 deletions

View File

@@ -961,7 +961,7 @@ public class PJOGL extends PGL {
InputEvent.ALT_MASK);
char keyChar;
if ((int)nativeEvent.getKeyChar() == 0) {
if (nativeEvent.getKeyChar() == 0) {
keyChar = PConstants.CODED;
} else {
keyChar = nativeEvent.getKeyChar();