Bug fix: Empty ROM drive was mistaken to hold an unsuitable disc
This commit is contained in:
parent
e2cc28ec14
commit
c7f0b2f2d0
@ -1 +1 @@
|
||||
#define Cdrskin_timestamP "2011.07.12.155335"
|
||||
#define Cdrskin_timestamP "2011.07.12.155417"
|
||||
|
@ -310,8 +310,9 @@ int burn_drive_inquire_media(struct burn_drive *d)
|
||||
if (d->current_profile == -1 || d->current_is_cd_profile)
|
||||
d->read_toc(d);
|
||||
|
||||
/* ts A70314 */
|
||||
d->status = BURN_DISC_UNSUITABLE;
|
||||
/* ts A70314 , B10712 */
|
||||
if (d->status != BURN_DISC_EMPTY)
|
||||
d->status = BURN_DISC_UNSUITABLE;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user