Print all pregaps for track 1 in --split-gaps mode (bug #5965, part 1 of 2).

This commit is contained in:
Svend Sorensen
2006-02-14 01:04:44 +00:00
parent a724473fc3
commit c9775d368c

View File

@@ -94,7 +94,7 @@ void print_breaks (Cd *cd, int gaps)
/* TODO: should first track's pregap be split when appending? /* TODO: should first track's pregap be split when appending?
* this could be a suprising default * 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); b += track_get_index(track, 1) - track_get_zero_pre(track);
print_breakpoint(b); print_breakpoint(b);
} }