Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
KilledByAPixel committed Jun 30, 2024
1 parent e9052f5 commit 0955458
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -761,8 +761,8 @@

if (volume > 1) // prevent rounding up causing sound to go above 1
volume = Math.max(1, Fixed(volume - .01));
if (volume > 3) // prevent too loud
volume = 3;
if (volume > 9) // prevent too loud
volume = 9;
if (volume < .1)// prevent too quiet
volume = .1;

Expand Down

0 comments on commit 0955458

Please sign in to comment.