Add dumping program selection to main UI (#479)

* Add dumping program selection to main UI

* Fix program dropdown

* Fix lingering location

* Final changes
This commit is contained in:
Matt Nadareski
2023-04-11 11:15:53 -04:00
committed by GitHub
parent a368afc14a
commit 01a69ef9b3
10 changed files with 70 additions and 14 deletions

View File

@@ -59,7 +59,7 @@ namespace MPF.Check
if (!string.IsNullOrWhiteSpace(path))
drive = Drive.Create(null, path);
var env = new DumpEnvironment(options, filepath, drive, knownSystem, mediaType, null);
var env = new DumpEnvironment(options, filepath, drive, knownSystem, mediaType, internalProgram: null, parameters: null);
// Finally, attempt to do the output dance
var result = env.VerifyAndSaveDumpOutput(resultProgress, protectionProgress).ConfigureAwait(false).GetAwaiter().GetResult();