From b3b096215d8a307dc4c4dcfe09732cbe48a946b9 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sat, 3 Jun 2017 01:26:43 +0100 Subject: [PATCH] ATAPI or SCSI can be PCMCIA, like the IOMEGA PocketZip. --- DiscImageChef.Core/Devices/Report/SCSI/General.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DiscImageChef.Core/Devices/Report/SCSI/General.cs b/DiscImageChef.Core/Devices/Report/SCSI/General.cs index ea7f46f6..5daca27c 100644 --- a/DiscImageChef.Core/Devices/Report/SCSI/General.cs +++ b/DiscImageChef.Core/Devices/Report/SCSI/General.cs @@ -64,6 +64,9 @@ namespace DiscImageChef.Core.Devices.Report.SCSI if(dev.IsFireWire) FireWire.Report(dev, ref report, debug, ref removable); + if(dev.IsPCMCIA) + PCMCIA.Report(dev, ref report, debug, ref removable); + if(!dev.IsUSB && !dev.IsFireWire && dev.IsRemovable) { pressedKey = new ConsoleKeyInfo();