# HG changeset patch # User ib # Date 1354199440 0 # Node ID 89edd725a58737c02fac8fcd3842a54c4b91762a # Parent d86249ebbcca738017f196b36e5e4dff3f92b734 Fix bug with resetting guiInfo's Track. It must not be reset for a StreamType that is permitted in a playlist and it must be set to a different value for VCD (where track 1 is a metadata track). diff -r d86249ebbcca -r 89edd725a587 gui/interface.c --- a/gui/interface.c Thu Nov 29 14:23:26 2012 +0000 +++ b/gui/interface.c Thu Nov 29 14:30:40 2012 +0000 @@ -789,7 +789,8 @@ filename = NULL; - guiInfo.Track = 1; + if (!isPlaylistStreamtype) + guiInfo.Track = (guiInfo.StreamType == STREAMTYPE_VCD ? 2 : 1); if (guiInfo.Chapter) guiInfo.Chapter = 1; if (guiInfo.Angle)