From c446f0962ffc6bb63c4edc4469f1f866fe1c677f Mon Sep 17 00:00:00 2001 From: Rob Pilling Date: Fri, 26 May 2023 08:01:58 +0100 Subject: [PATCH] rep: rename step --- apps/rep/app.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/rep/app.ts b/apps/rep/app.ts index 16094f5ed..a63eda6ba 100644 --- a/apps/rep/app.ts +++ b/apps/rep/app.ts @@ -26,7 +26,7 @@ const fontScaleRep = 2; const fontSzRep = 20; const fontSzRepDesc = 12; const blue = "#86caf7"; -const step = 5 * 1000; +const ffStep = 5 * 1000; let state: State | undefined; let drawInterval: IntervalId | undefined; @@ -215,11 +215,11 @@ class State { } forward() { - this.accumulated += step; + this.accumulated += ffStep; } rewind() { - this.accumulated -= step; + this.accumulated -= ffStep; } }