diff --git a/CHANGELIST.md b/CHANGELIST.md index 46f24bf4..73c03d7c 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -3,6 +3,7 @@ - Update RedumpLib - Update Redumper to build 294 - Fix commented out code +- Make missing hash data clearer ### 3.0.3 (2023-12-04) diff --git a/MPF.Core/Modules/Redumper/Parameters.cs b/MPF.Core/Modules/Redumper/Parameters.cs index 0d60092d..c9e6e863 100644 --- a/MPF.Core/Modules/Redumper/Parameters.cs +++ b/MPF.Core/Modules/Redumper/Parameters.cs @@ -190,7 +190,7 @@ namespace MPF.Core.Modules.Redumper if (!File.Exists($"{basePath}.log")) missingFiles.Add($"{basePath}.log"); else if (GetDatfile($"{basePath}.log") == null) - missingFiles.Add($"{basePath}.dat"); + missingFiles.Add($"{basePath}.log (dat section)"); if (!File.Exists($"{basePath}.state")) missingFiles.Add($"{basePath}.state"); if (!File.Exists($"{basePath}.subcode"))