From 99260bc21cf55a6300851b1106571152e3aa6f4a Mon Sep 17 00:00:00 2001 From: martynshaw99 Date: Mon, 29 Aug 2011 22:30:22 +0000 Subject: [PATCH] Remember that we got a start time --- src/Mix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mix.cpp b/src/Mix.cpp index bdca70fd2..a2618fa2a 100644 --- a/src/Mix.cpp +++ b/src/Mix.cpp @@ -109,6 +109,7 @@ bool MixAndRender(TrackList *tracks, TrackFactory *trackFactory, if (!gotstart) { // no previous start, use this one unconditionally mixStartTime = tstart; + gotstart = true; } else if (tstart < mixStartTime) mixStartTime = tstart; // have a start, only make it smaller } // end if start and end are different