Cell lCell = logical[x][y];
Cell pCell = physical[x][y];
- if ((lCell != pCell) || reallyCleared) {
+ if (!lCell.equals(pCell) || reallyCleared) {
if (debugToStderr) {
System.err.printf("\n--\n");
lastX = x;
lastAttr.setTo(lCell);
- // Physical is always updatesd
+ // Physical is always updated
physical[x][y].setTo(lCell);
- } // if ((lCell != pCell) || (reallyCleared == true))
+ } // if (!lCell.equals(pCell) || (reallyCleared == true))
} // for (int x = 0; x < width; x++)
}
}
}
} else {
- // Wait 5 millis for more data
- Thread.sleep(5);
+ // Wait 10 millis for more data
+ Thread.sleep(10);
}
// System.err.println("end while loop"); System.err.flush();
} catch (InterruptedException e) {