From 741768ecba10921a4ba50d82fe34a35db35a75ed Mon Sep 17 00:00:00 2001 From: HeroponRikiBestest Date: Wed, 10 Jul 2024 15:38:07 -0400 Subject: [PATCH] Fixes multisession gap check for PX-4824 drives. --- cd/cd_dump.ixx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cd/cd_dump.ixx b/cd/cd_dump.ixx index 83ef51c..7b2a232 100644 --- a/cd/cd_dump.ixx +++ b/cd/cd_dump.ixx @@ -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: