From c9775d368ce92d3689f823f0b38a149195e749a5 Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Tue, 14 Feb 2006 01:04:44 +0000 Subject: [PATCH] Print all pregaps for track 1 in --split-gaps mode (bug #5965, part 1 of 2). --- src/tools/cuebreakpoints.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/cuebreakpoints.c b/src/tools/cuebreakpoints.c index bc422fa..345d6c3 100644 --- a/src/tools/cuebreakpoints.c +++ b/src/tools/cuebreakpoints.c @@ -94,7 +94,7 @@ void print_breaks (Cd *cd, int gaps) /* TODO: should first track's pregap be split when appending? * this could be a suprising default */ - if (1 < i) { + if (1 < i || gaps == SPLIT) { b += track_get_index(track, 1) - track_get_zero_pre(track); print_breakpoint(b); }