Skip to content

Commit

Permalink
Fixes multisession gap check for PX-4824 drives.
Browse files Browse the repository at this point in the history
  • Loading branch information
HeroponRikiBestest committed Jul 10, 2024
1 parent 99ab200 commit 741768e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cd/cd_dump.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ export bool redumper_dump_cd(Context &ctx, const Options &options, bool refine)
// PLEXTOR: multisession lead-out overread
// usually there are couple of slow sectors before SCSI error is generated
// some models (PX-708UF) exit on I/O semaphore timeout on such slow sectors
if(ctx.drive_config.type == DriveConfig::Type::PLEXTOR && slow && inside_range(lba, error_ranges) != nullptr)
if((ctx.drive_config.type == DriveConfig::Type::PLEXTOR || ctx.drive_config.product_id == "CD-R PX-W4824A") && slow && inside_range(lba, error_ranges) != nullptr)
{
// skip sector in refine mode
// lba_next = lba + 1; //FIXME:
Expand Down

0 comments on commit 741768e

Please sign in to comment.