From 91437bd94dc4c07cc172496a3e5ca24767973c16 Mon Sep 17 00:00:00 2001 From: cancel Date: Sat, 25 Jan 2020 02:35:12 +0900 Subject: [PATCH] Change default conf for MIDI beat clock to disabled Wastes CPU time on extra timing if not needed, and is probably undesired by default, since it may interfere with sequencers. --- tui_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui_main.c b/tui_main.c index b2ec35f..3fbe472 100644 --- a/tui_main.c +++ b/tui_main.c @@ -939,7 +939,7 @@ static void ged_init(Ged *a, Usz undo_limit, Usz init_bpm, Usz init_seed) { a->needs_remarking = true; a->is_draw_dirty = false; a->is_playing = false; - a->midi_bclock = true; + a->midi_bclock = false; a->draw_event_list = false; a->is_mouse_down = false; a->is_mouse_dragging = false;