diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/gameUi.js b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/gameUi.js index 5593d3993..3018c2739 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/gameUi.js +++ b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/gameUi.js @@ -145,11 +145,11 @@ var GempLotrGameUI = Class.extend({ }); slowerBut.click( function () { - that.animations.replaySpeed = Math.min(2, that.animations.replaySpeed + 0.2); + that.animations.replaySpeed = Math.min(16, that.animations.replaySpeed * 2); }); fasterBut.click( function () { - that.animations.replaySpeed = Math.max(0.2, that.animations.replaySpeed - 0.2); + that.animations.replaySpeed = Math.max(0.0625, that.animations.replaySpeed / 2); }); replayDiv.append(slowerBut); replayDiv.append(fasterBut);