Skip to content

Commit 569a900

Browse files
[visualizer] increase max speed from 20 to 50 #58
1 parent 8fabf7f commit 569a900

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

visualizer/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ <h3>Found a Bug?</h3>
150150
type="range"
151151
id="speed-slider"
152152
min="0.5"
153-
max="20"
153+
max="50"
154154
step="0.5"
155155
value="5"
156156
/>
@@ -159,7 +159,7 @@ <h3>Found a Bug?</h3>
159159
type="number"
160160
id="speed-number-input"
161161
min="0.5"
162-
max="20"
162+
max="50"
163163
step="0.5"
164164
value="5"
165165
/>

visualizer/src/ts/input_manager/timeManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const fullscreenToggleButton = document.getElementById(
4949
// consts
5050

5151
const minSpeed = 0.5;
52-
const maxSpeed = 20;
52+
const maxSpeed = 50;
5353
const speedIncrement = 0.5;
5454

5555
// Time Tracking Variables

0 commit comments

Comments
 (0)