From 60b2bb3b54325e1f6f05a8714f4e3399990d70f9 Mon Sep 17 00:00:00 2001 From: Alexey Nurgaliev Date: Fri, 11 Aug 2023 16:16:09 +0300 Subject: [PATCH] do not change rewindEnabled --- data/emulator.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/data/emulator.js b/data/emulator.js index e70ce9f..74bcbe3 100644 --- a/data/emulator.js +++ b/data/emulator.js @@ -3133,12 +3133,6 @@ class EmulatorJS { this.isFastForward = false; this.gameManager.toggleFastForward(0); } - } else if (option === "rewindEnabled") { - if (value === "enabled") { - this.rewindEnabled = true; - } else if (value === "disabled") { - this.rewindEnabled = false; - } } else if (option === "rewind-granularity") { if (this.rewindEnabled) { this.gameManager.setRewindGranularity(parseInt(value));