Save data on device report when not in debug mode.

This commit is contained in:
2019-12-27 17:48:23 +00:00
parent 8862d8b9b4
commit 482c646f71
11 changed files with 511 additions and 522 deletions

View File

@@ -36,13 +36,11 @@ namespace DiscImageChef.Core.Devices.Report
{
public partial class DeviceReport
{
bool debug;
Device dev;
Device _dev;
public DeviceReport(Device device, bool debug)
public DeviceReport(Device device)
{
dev = device;
this.debug = debug;
_dev = device;
}
}
}