Bugfix after changes for DVD+RW: start_byte was initialized 0, but must be -1

This commit is contained in:
Thomas Schmitt 2006-12-24 18:23:30 +00:00
parent 221aee23d1
commit 42c0cc6dd4
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2006.12.24.182307"
#define Cdrskin_timestamP "2006.12.24.182410"

View File

@ -34,7 +34,7 @@ struct burn_write_opts *burn_write_opts_new(struct burn_drive *drive)
opts->perform_opc = 1;
opts->obs = -1;
opts->obs_pad = 0;
opts->start_byte = 0;
opts->start_byte = -1;
opts->has_mediacatalog = 0;
opts->format = BURN_CDROM;
opts->multi = 0;