diff options
Diffstat (limited to 'test-client')
| -rw-r--r-- | test-client/visual.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-client/visual.ts b/test-client/visual.ts index 9373a092..d75f90f5 100644 --- a/test-client/visual.ts +++ b/test-client/visual.ts @@ -106,8 +106,8 @@ function draw_score() { ctx.font = "30px sans-serif" ctx.fillText(`${tr("c.score.points")}: ${score.points}`, 10, canvas.height - 60) ctx.font = "20px sans-serif" - ctx.fillText(`${tr("c.score.completed")}: ${score.demands_completed}`, 10, canvas.height - 30) - ctx.fillText(`${tr("c.score.failed")}: ${score.demands_failed}`, 10, canvas.height - 10) + ctx.fillText(`${tr("c.score.demands_completed")}: ${score.demands_completed}`, 10, canvas.height - 30) + ctx.fillText(`${tr("c.score.demands_failed")}: ${score.demands_failed}`, 10, canvas.height - 10) } function draw_debug() { |