diff --git a/src/routes/game.ts b/src/routes/game.ts index 33e44b0..4a47d8e 100644 --- a/src/routes/game.ts +++ b/src/routes/game.ts @@ -9,7 +9,7 @@ import { ProcessResultsPage } from "./results"; import { v4 as uuidv4 } from "uuid"; /** - * Cogspeed game that handles button clicks, + * CogSpeed game that handles button clicks, * Starting and stopping the game and rounds * * Note the order of the rounds is as follows: diff --git a/src/routes/results.ts b/src/routes/results.ts index 51768c4..8833473 100644 --- a/src/routes/results.ts +++ b/src/routes/results.ts @@ -225,8 +225,7 @@ export class ProcessResultsPage { Date/time: ${data._date} Location: ${data.location.normalizedLocation} Status: ${data.status} - Message: ${data.statusCode} - Blocking duration: ${data.blockingRoundDuration}`, { + Test duration: ${data.testDuration}s`, { fontFamily: "Trebuchet", fontSize: 18, fill: 0xffffff, diff --git a/src/ui/handler.ts b/src/ui/handler.ts index 241be42..6d38d6b 100644 --- a/src/ui/handler.ts +++ b/src/ui/handler.ts @@ -188,7 +188,7 @@ export class CogSpeedGraphicsHandler { headerBoxSPF.lineStyle(2, 0xafafaf); headerBoxSPF.drawRect(marginLeft, yPos, width, height); - const headerTextSPF = new Text("S-P-F Score", {fill: 0x00000, fontSize: 14}) + const headerTextSPF = new Text("S-PF Score", {fill: 0x00000, fontSize: 14}) headerTextSPF.position.set(screenWidth * 0.135, yPos + 8); const valueBoxSPF = new Graphics(); @@ -204,7 +204,7 @@ export class CogSpeedGraphicsHandler { headerBoxCPI.lineStyle(2, 0xafafaf); headerBoxCPI.drawRect(marginLeft + width, yPos, width, height); - const headerTextCPI = new Text("Cogspeed Score", {fill: 0x00000, fontSize: 14}) + const headerTextCPI = new Text("CogSpeed Score", {fill: 0x00000, fontSize: 14}) headerTextCPI.position.set(screenWidth * 0.105 + width, yPos + 8); const valueBoxCPI = new Graphics(); @@ -219,7 +219,7 @@ export class CogSpeedGraphicsHandler { headerBoxBRD.lineStyle(2, 0xafafaf); headerBoxBRD.drawRect(marginLeft + width * 2, yPos, width, height); - const headerTextBRD = new Text("BRD Duration", {fill: 0x00000, fontSize: 14}) + const headerTextBRD = new Text("BRD", {fill: 0x00000, fontSize: 14}) headerTextBRD.position.set(screenWidth * 0.12 + width * 2, yPos + 8); const valueBoxBRD = new Graphics();