Fix off-by-one error

This commit is contained in:
Florine W. Dekker 2020-09-02 20:49:41 +02:00
parent 7f440a015e
commit a3cac727cc
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ export class HighScores {
const score = highScores[j];
report += "" +
`<tr>
<th>#${j}</th>
<th>#${j + 1}</th>
<td>${formatTime(Math.floor(score.time / 1000), true, false)}</td>
<td>${score.deaths}</td>
</tr>`;