Add TODO with notes to Redumper

This commit is contained in:
Matt Nadareski
2023-06-10 18:01:52 -04:00
parent be980fe0c4
commit 0afb49b657
2 changed files with 5 additions and 0 deletions

View File

@@ -62,6 +62,7 @@
- Unblock Redumper DVD support
- Support Redumper DVD layerbreak
- Add placeholder and TODOs for Redumper
- Add TODO with notes to Redumper
### 2.5 (2023-03-12)

View File

@@ -180,6 +180,10 @@ namespace MPF.Modules.Redumper
/// <inheritdoc/>
public override (bool, List<string>) CheckAllOutputFilesExist(string basePath, bool preCheck)
{
// TODO: Also check for incomplete files, if possible
// All files should be generated at the beginning of a dump, so it is difficult to know if anything is missing
// Potentially looking inside of the `log` file, if it exists, would be useful
// Another option could be the presence of the DAT section, since it's not a separate file here
List<string> missingFiles = new List<string>();
switch (this.Type)