mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-24 15:55:05 +00:00
Editorconfig and some manual cleanup
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user