From 3c5b660405da53175b71bf36d4d960437124886c Mon Sep 17 00:00:00 2001 From: cancel Date: Sat, 25 Jan 2020 04:35:20 +0900 Subject: [PATCH] Fix incorrect conf loading value for MIDI clock --- tui_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui_main.c b/tui_main.c index 50eb694..aea5a87 100644 --- a/tui_main.c +++ b/tui_main.c @@ -2630,7 +2630,7 @@ staticni void tui_load_prefs(Tui *t) { case Confopt_midi_beat_clock: { bool enabled; if (conf_read_boolish(ez.value, &enabled)) { - t->ged.midi_bclock = true; + t->ged.midi_bclock = enabled; touched |= TOUCHFLAG(Confopt_midi_beat_clock); } break;