Fix field separator position

This commit is contained in:
drdev
2014-05-11 20:38:17 +00:00
parent a9f99af688
commit 3ea7b8a9ff

View File

@@ -139,7 +139,7 @@ public class MatchScreen extends FScreen {
}
g.drawLine(1, BORDER_COLOR, 0, y, w, y);
y = (midField - SEPARATOR_THICKNESS) / 2;
y = midField - SEPARATOR_THICKNESS / 2;
g.drawLine(SEPARATOR_THICKNESS, BORDER_COLOR, 0, y, w, y);
y = midField + bottomPlayerPanel.getField().getHeight();