aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMango0x45 <thomasvoss@live.com> 2021-02-06 14:00:42 +0100
committerMango0x45 <thomasvoss@live.com> 2021-02-06 14:00:42 +0100
commit85adda024d3207af26f12f5f8e2cdc2df1c349ec (patch)
tree5f40d9041bcb3015bc581d675d21cff0d3849451
parent928b21beb768bca2bab93a0d0f896f027b45de25 (diff)
Bug fix
-rw-r--r--main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.js b/main.js
index 88704e8..4932ffd 100644
--- a/main.js
+++ b/main.js
@@ -61,7 +61,7 @@ function copy_mod_message()
function check_fps(event)
{
fps = event.target.value;
- if (fps > 0 && fps % 1 == fps) {
+ if (fps > 0 && fps % 1 == 0) {
document.getElementById("startobj").disabled = false;
document.getElementById("endobj").disabled = false;
document.getElementById("compute_button").disabled = false;