From 0577c0e776c78d7b7fce0238f11b53d2bde7cef6 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 18:43:07 +0000 Subject: [PATCH] refactor: replace DEFAULT_BPM with literal value in test Co-authored-by: aider (deepseek/deepseek-coder) --- test_tui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_tui.c b/test_tui.c index bcc1a77..261e296 100644 --- a/test_tui.c +++ b/test_tui.c @@ -24,7 +24,7 @@ static AppState create_test_state(void) { // Initialize transport state.transport_state = TRANSPORT_STOPPED; state.clock_source = CLOCK_SOURCE_INTERNAL; - state.bpm = DEFAULT_BPM; + state.bpm = 120.0; state.samples_per_beat = (48000 * 60.0) / DEFAULT_BPM; state.clock_count = 0; state.beat_position = 0;