From 06b1b583d099b9a0d4d5950861c8f96f7e50bef3 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 29 Sep 2017 13:48:17 +0000 Subject: [PATCH] Corrected SD/MMC report being saved in incorrect fields. --- DiscImageChef.Core/Devices/Report/SecureDigital.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DiscImageChef.Core/Devices/Report/SecureDigital.cs b/DiscImageChef.Core/Devices/Report/SecureDigital.cs index a7e72d731..4a3e1f17e 100644 --- a/DiscImageChef.Core/Devices/Report/SecureDigital.cs +++ b/DiscImageChef.Core/Devices/Report/SecureDigital.cs @@ -133,7 +133,7 @@ namespace DiscImageChef.Core.Devices.Report if(!sense) { DicConsole.WriteLine("OCR obtained correctly..."); - report.MultiMediaCard.OCR = ocr; + report.SecureDigital.OCR = ocr; } else DicConsole.WriteLine("Could not read OCR..."); @@ -144,7 +144,7 @@ namespace DiscImageChef.Core.Devices.Report if(!sense) { DicConsole.WriteLine("SCR obtained correctly..."); - report.MultiMediaCard.SCR = scr; + report.SecureDigital.SCR = scr; } else DicConsole.WriteLine("Could not read SCR...");