void animateLoss(int x, int y, int size, String message) {
int startX;
if (x < 1920/2) { startX = 1920; }
- else if (x > 1920/2) { startX = 1920; } // XXX
+ else if (x > 1920/2) { startX = 0; }
else { startX = 1920 * random.nextInt(2); }
Text msg = graphicEntityModule.createText(message)