mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 14:55:11 +00:00
First round of cleanup for DolphinLib additions
This commit is contained in:
@@ -2,15 +2,15 @@ namespace SabreTools.Data.Models.NintendoDisc
|
||||
{
|
||||
/// <summary>
|
||||
/// A single entry in the Wii disc partition table.
|
||||
/// The table lives at 0x40000–0x4FFFF on the disc.
|
||||
/// The table lives at 0x40000-0x4FFFF on the disc.
|
||||
/// </summary>
|
||||
/// <see href="https://wiibrew.org/wiki/Wii_disc#Partition_table"/>
|
||||
public sealed class WiiPartitionTableEntry
|
||||
{
|
||||
/// <summary>
|
||||
/// Absolute byte offset of the partition on the disc.
|
||||
/// Stored on-disc as <c>offset >> 2</c> (big-endian u32).
|
||||
/// Absolute byte offset of the partition on the disc
|
||||
/// </summary>
|
||||
/// <remarks>Big-endian, requires left bit shift of 2 to get the real value</remarks>
|
||||
public long Offset { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user