Treat all UMD as DL visually

This commit is contained in:
Matt Nadareski
2025-07-22 14:57:03 -04:00
parent 23bafad3db
commit 572f0d5095
2 changed files with 18 additions and 2 deletions

View File

@@ -7,6 +7,7 @@
- Put a try/catch around GenerateArtifacts
- Reduce preprocessing in DumpEnvironment
- Update RedumpLib to 1.6.9
- Treat all UMD as DL visually
### 3.3.3 (2025-07-18)

View File

@@ -332,8 +332,6 @@ namespace MPF.UI.Windows
case DiscType.NintendoWiiOpticalDiscSL:
case DiscType.NintendoWiiOpticalDiscDL:
case DiscType.NintendoWiiUOpticalDiscSL:
case DiscType.UMDSL:
case DiscType.UMDDL:
// Quad-layer discs
if (submissionInfo?.SizeAndChecksums?.Layerbreak3 != default(long))
{
@@ -428,6 +426,23 @@ namespace MPF.UI.Windows
break;
case DiscType.UMDSL:
case DiscType.UMDDL:
L0Info!.Header = reverseOrder ? "Layer 0 (Outer)" : "Layer 0 (Inner)";
L0MasteringRing!.Label = "Mastering Ring";
L0MasteringSID!.Label = "Mastering SID";
L0Toolstamp!.Label = "Toolstamp/Mastering Code";
L0MouldSID!.Label = "Data Side Mould SID";
L0AdditionalMould!.Label = "Data Side Additional Mould";
L1Info!.Header = reverseOrder ? "Layer 1 (Inner)" : "Layer 1 (Outer)";
L1MasteringRing!.Label = "Mastering Ring";
L1MasteringSID!.Label = "Mastering SID";
L1Toolstamp!.Label = "Toolstamp/Mastering Code";
L1MouldSID!.Label = "Label Side Mould SID";
L1AdditionalMould!.Label = "Label Side Additional Mould";
break;
// All other media we assume to have no rings
default:
L0Info!.Visibility = Visibility.Collapsed;