From a5990657cf48453e8f63a1f21d9dd4485996cb38 Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Fri, 21 Feb 2025 11:03:53 -0600 Subject: [PATCH] Save default options to this.settings array --- data/src/emulator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/src/emulator.js b/data/src/emulator.js index 03544d0..f10a77c 100644 --- a/data/src/emulator.js +++ b/data/src/emulator.js @@ -4509,7 +4509,7 @@ class EmulatorJS { if (this.config.defaultOptions) { for (const k in this.config.defaultOptions) { - this.changeSettingOption(k, this.config.defaultOptions[k], true); + this.changeSettingOption(k, this.config.defaultOptions[k]); } } }