Update rot.js

This commit is contained in:
uwaa 2025-01-27 14:55:51 +00:00
parent 15c05baa5a
commit e2b85e405d

View file

@ -378,8 +378,8 @@
localStorage.audiomuted = audio.muted = musicmute.checked; localStorage.audiomuted = audio.muted = musicmute.checked;
playMusic(); playMusic();
}) })
volumeStepDwn.addEventListener('click', () => volumeAdd(-0.05)) volumeStepDwn.addEventListener('click', () => volumeAdd(-0.05));
volumeStepUp.addEventListener('click', () => volumeAdd(0.05)) volumeStepUp.addEventListener('click', () => volumeAdd(0.05));
updateVolumeLabel(); updateVolumeLabel();
} }