Skip to content

Commit

Permalink
Bug fix #4
Browse files Browse the repository at this point in the history
  • Loading branch information
Hope41 authored Dec 17, 2023
1 parent f0e1133 commit f5e6d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function update(milliseconds) {
// don't normalise speed if framerate is lower than 60fps
if (DT > 1) DT = 1

time = milliseconds / 16
time = milliseconds / 16 / DT
dt = DT

document.body.style.cursor = 'default'
Expand Down

0 comments on commit f5e6d1d

Please sign in to comment.