From 0686c2612a9c58cc96bf1612f4baeb06c4ede341 Mon Sep 17 00:00:00 2001 From: Robert Tsai Date: Tue, 25 Aug 2026 10:38:29 -0700 Subject: [PATCH] Global Setting 154 ("Ins/Outs" => "Return Type"): change from Kind::Flag to Kind::Choice cargo run -p fretwire-cli -- setting-get 154 154 = 1 [int] --- crates/fretwire-protocol/src/settings.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/fretwire-protocol/src/settings.rs b/crates/fretwire-protocol/src/settings.rs index 95f1e23..ed21080 100644 --- a/crates/fretwire-protocol/src/settings.rs +++ b/crates/fretwire-protocol/src/settings.rs @@ -282,10 +282,7 @@ pub const SETTINGS: &[Setting] = &[ // [XL] name: "Return Type", group: "Ins/Outs", - kind: Kind::Flag { - on: "Aux In", - off: "Return", - }, + kind: Kind::Choice(&[(0, "Return"), (1, "Aux In")]), }, Setting { id: 156,