Corrected CD TAO bug introduced with DVD bug fix 724 and CD SAO change 655

This commit is contained in:
Thomas Schmitt 2007-02-16 11:21:01 +00:00
parent d272450a70
commit ca69e3f2ca
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2007.02.15.203448" #define Cdrskin_timestamP "2007.02.16.111941"

View File

@ -461,7 +461,7 @@ struct cue_sheet *burn_create_toc_entries(struct burn_write_opts *o,
track length. track length.
*/ */
track_length = burn_track_get_sectors(tar[i]); track_length = burn_track_get_sectors(tar[i]);
if (track_length < 300) { if (track_length < 300 && !burn_track_is_open_ended(tar[i])) {
track_length = 300; track_length = 300;
if (!tar[i]->pad) if (!tar[i]->pad)
tar[i]->pad = 1; tar[i]->pad = 1;