Editorconfig and some manual cleanup

This commit is contained in:
Matt Nadareski
2026-04-13 09:43:40 -04:00
parent 0e5380ad1a
commit 7d14681fc9
8 changed files with 23 additions and 27 deletions

View File

@@ -21,9 +21,11 @@ namespace SabreTools.Data.Models.XDVDFS
/// <summary>
/// Volume Descriptor magic bytes at start of sector 32
/// </summary>
public static readonly byte[] VolumeDescriptorMagic = [0x4D, 0x49, 0x43, 0x52, 0x4F, 0x53, 0x4F, 0x46,
0x54, 0x2A, 0x58, 0x42, 0x4F, 0x58, 0x2A, 0x4D,
0x45, 0x44, 0x49, 0x41];
public static readonly byte[] VolumeDescriptorMagic = [
0x4D, 0x49, 0x43, 0x52, 0x4F, 0x53, 0x4F, 0x46,
0x54, 0x2A, 0x58, 0x42, 0x4F, 0x58, 0x2A, 0x4D,
0x45, 0x44, 0x49, 0x41
];
/// <summary>
/// Volume Descriptor signature at start of sector 32

View File

@@ -11,8 +11,10 @@ namespace SabreTools.Data.Models.XboxISO
/// 6/7 = XGD3
/// </summary>
/// <see href="https://github.dev/Deterous/XboxKit/"/>
public static readonly long[] RedumpIsoLengths = [0x1D26A8000, 0x1D3301800, 0x1D2FEF800, 0x1D3082000,
0x1D3390000, 0x1D31A0000, 0x208E05800, 0x208E03800];
public static readonly long[] RedumpIsoLengths = [
0x1D26A8000, 0x1D3301800, 0x1D2FEF800, 0x1D3082000,
0x1D3390000, 0x1D31A0000, 0x208E05800, 0x208E03800
];
/// <summary>
/// Known XISO offsets into redump ISOs

View File

@@ -9,7 +9,7 @@ namespace SabreTools.Data.Models.XboxISO
/// <summary>
/// ISO9660 Video parititon, split across start and end of Disc Image
/// </summary>
public SabreTools.Data.Models.ISO9660.Volume VideoPartition { get; set; } = new();
public ISO9660.Volume VideoPartition { get; set; } = new();
/// <summary>
/// XGD type present in game partition
@@ -24,6 +24,6 @@ namespace SabreTools.Data.Models.XboxISO
/// <summary>
/// XDVDFS Game partition, present in middle of Disc Image
/// </summary>
public SabreTools.Data.Models.XDVDFS.Volume GamePartition { get; set; } = new();
public XDVDFS.Volume GamePartition { get; set; } = new();
}
}