fix wrong cast in morse app (#2436)

* fix wrong cast

* sorry, forgot to use enum
This commit is contained in:
sommermorgentraum
2024-12-20 14:53:15 +08:00
committed by GitHub
parent 84dcfe29a7
commit 55525ed4ad
2 changed files with 9 additions and 5 deletions

View File

@@ -232,9 +232,8 @@ MorseView::MorseView(
set_foxhunt(foxhunt_code);
};
options_modulation.on_change = [this](size_t i, int32_t value) {
(void)i; // avoid unused warning
mode_cw = (bool)value;
options_modulation.on_change = [this](size_t, OptionsField::value_t v) {
mode_cw = (bool)v;
};
options_loop.on_change = [this](size_t i, uint32_t value) {