score: move match sets and time tothe left
parent
656d3e65cd
commit
df13e80b14
|
|
@ -316,20 +316,20 @@ function draw() {
|
||||||
15
|
15
|
||||||
);
|
);
|
||||||
} else if (matchEnded()) {
|
} else if (matchEnded()) {
|
||||||
g.setFontAlign(0,-1);
|
g.setFontAlign(1,0);
|
||||||
|
|
||||||
let dur1 = formatDuration(scores[cSet][2] - scores[0][2]);
|
let dur1 = formatDuration(scores[cSet][2] - scores[0][2]);
|
||||||
g.setFont('5x9Numeric7Seg',1);
|
g.setFont('5x9Numeric7Seg',1);
|
||||||
g.drawString(
|
g.drawString(
|
||||||
dur1,
|
dur1,
|
||||||
getXCoord(w => p === 0 ? w/8 : w/8*5),
|
40,
|
||||||
10
|
10
|
||||||
);
|
);
|
||||||
|
|
||||||
g.setFont('Teletext5x9Ascii',1);
|
g.setFont('Teletext5x9Ascii',1);
|
||||||
g.drawString(
|
g.drawString(
|
||||||
(currentSet()+1) + ' set' + (currentSet() > 0 ? 's' : ''),
|
(currentSet()+1) + ' set' + (currentSet() > 0 ? 's' : ''),
|
||||||
getXCoord(w => p === 0 ? w/8*3 : w/8*7),
|
40,
|
||||||
12
|
12
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue