Add BCA to list of files to select in Check UI

This commit is contained in:
Matt Nadareski
2025-10-10 09:05:54 -04:00
parent 9012ff85a9
commit ad93387aea
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
### WIP (xxxx-xx-xx)
- Add BCA to list of files to select in Check UI
### 3.5.0 (2025-10-10)
- Add failure if media type could not be determined

View File

@@ -112,7 +112,7 @@ namespace MPF.UI.Windows
WinForms.FileDialog fileDialog = new WinForms.OpenFileDialog
{
InitialDirectory = directory,
Filter = "Disc Images|*.iso;*.cue;*.aaruf|All Files|*.*",
Filter = "Disc Images|*.iso;*.cue;*.aaruf;*.bca|All Files|*.*",
};
WinForms.DialogResult result = fileDialog.ShowDialog();