Ignore common volume labels (#960)

This commit is contained in:
Deterous
2026-03-18 09:47:48 +09:00
committed by GitHub
parent 86d02063ae
commit 91062ae79c
2 changed files with 5 additions and 0 deletions

View File

@@ -72,6 +72,7 @@
- Compress fixed SS
- Only print BCA for nintendo dumps
- Update packages
- Ignore common volume labels
### 3.6.0 (2025-11-28)

View File

@@ -570,6 +570,10 @@ namespace MPF.Frontend.Tools
if (FrontendTool.GetRedumpSystemFromVolumeLabel(driveLabel) is not null)
return null;
// Ignore "DVD_ROM" / "CD_ROM" labels
if (driveLabel == "DVD_ROM" || driveLabel == "CD_ROM")
return null;
return driveLabel;
}