aboutsummaryrefslogtreecommitdiff
path: root/webAO/client.html
diff options
context:
space:
mode:
authorsD <stoned@derpymail.org>2020-03-15 23:55:34 +0100
committersD <stoned@derpymail.org>2020-03-15 23:55:34 +0100
commitb5a1d9f1335f3a58258d18efd827571efdd89363 (patch)
tree1ba05c3378a83c53856beae137d59676acdc9b60 /webAO/client.html
parent2a366984715b29fea456bf6d29400e19cc3e0f4c (diff)
change volume sliders 0 to 1 in 0.01 steps to match what html audio expects
Diffstat (limited to 'webAO/client.html')
-rw-r--r--webAO/client.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/webAO/client.html b/webAO/client.html
index 91cca24..bb8a328 100644
--- a/webAO/client.html
+++ b/webAO/client.html
@@ -292,11 +292,11 @@
<audio id="client_musicaudio" onvolumechange="changeMusicVolume()" controls loop></audio>
<p>SFX</p>
- <input id="client_svolume" class="long" type="range" min="0" max="100" value="100"
+ <input id="client_svolume" class="long" type="range" min="0" max="1" value="1" step="0.01"
onchange="changeSFXVolume()">
<p>Blip</p>
- <input id="client_bvolume" class="long" type="range" min="0" max="100" value="100"
+ <input id="client_bvolume" class="long" type="range" min="0" max="1" value="1" step="0.01"
onchange="changeBlipVolume()">
<br>
<br>