diff --git a/DiscImageChef.Core/Devices/Report/PCMCIA.cs b/DiscImageChef.Core/Devices/Report/PCMCIA.cs index fc772a38..5f56442d 100644 --- a/DiscImageChef.Core/Devices/Report/PCMCIA.cs +++ b/DiscImageChef.Core/Devices/Report/PCMCIA.cs @@ -47,10 +47,10 @@ namespace DiscImageChef.Core.Devices.Report { report.PCMCIA = new pcmciaType(); report.PCMCIA.CIS = dev.CIS; - Decoders.PCMCIA.Tuple[] tuples = CIS.GetTuples(dev.CIS); + Tuple[] tuples = CIS.GetTuples(dev.CIS); if(tuples != null) { - foreach(Decoders.PCMCIA.Tuple tuple in tuples) + foreach(Tuple tuple in tuples) { if(tuple.Code == TupleCodes.CISTPL_MANFID) {