keeping the minimum playback video speed to zero

This commit is contained in:
Apoorv Saxena
2014-06-07 01:41:47 +05:30
parent 4ec4a2d385
commit 5a7bb9e0a6

View File

@@ -27,7 +27,7 @@
}
function decrease() {
set_speed(common_speed - 0.10);
set_speed(Math.max(common_speed - 0.10, 0.00));
return common_speed;
}