dex-ui icon indicating copy to clipboard operation
dex-ui copied to clipboard

Corrected logic in Keyboard::draw, replace while with if to eliminate infinite loop.

Open vanishing opened this issue 8 years ago • 0 comments

-    while (key >= 0) {
+    if (key >= 0) {
       key = kd.readKeyReleased();
       if (key > 0) {

vanishing avatar Jul 06 '16 21:07 vanishing