From 0b72f39aa2bc3a122ca1cc9b971caec8d6856c8b Mon Sep 17 00:00:00 2001 From: NoSloppy <53964195+NoSloppy@users.noreply.github.com> Date: Tue, 23 Sep 2025 17:08:29 -0400 Subject: [PATCH] Update prop_base.h --- props/prop_base.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/props/prop_base.h b/props/prop_base.h index 641504df1..642a98f62 100644 --- a/props/prop_base.h +++ b/props/prop_base.h @@ -1754,6 +1754,13 @@ class PropBase : CommandParser, protected Looper, protected SaberBase, public Mo return true; } + if (!strcmp(cmd, "set_preset_fast") && arg) { + int preset = strtol(arg, NULL, 0); + SaveState(preset); + SetPreset(preset, false); + return true; + } + if (!strcmp(cmd, "change_preset") && arg) { int preset = strtol(arg, NULL, 0); if (preset != current_preset_.preset_num) {