Convert Blob_ECM.IndexEntry to a readonly struct

This commit is contained in:
YoshiRulz 2021-01-02 17:59:45 +10:00
parent bb1f7da864
commit d87066c634
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 17 additions and 14 deletions

View File

@ -42,12 +42,23 @@ namespace BizHawk.Emulation.DiscSystem
stream = null;
}
private class IndexEntry
private readonly struct IndexEntry
{
public int Type;
public uint Number;
public long ECMOffset;
public long LogicalOffset;
public readonly long ECMOffset;
public readonly long LogicalOffset;
public readonly uint Number;
public readonly int Type;
public IndexEntry(int type, uint number, long ecmOffset, long logicalOffset)
{
Type = type;
Number = number;
ECMOffset = ecmOffset;
LogicalOffset = logicalOffset;
}
}
/// <summary>
@ -100,15 +111,7 @@ namespace BizHawk.Emulation.DiscSystem
uint todo = (uint)N + 1;
IndexEntry ie = new IndexEntry
{
Number = todo,
ECMOffset = stream.Position,
LogicalOffset = logOffset,
Type = T
};
Index.Add(ie);
Index.Add(new IndexEntry(type: T, number: todo, ecmOffset: stream.Position, logicalOffset: logOffset));
if (T == 0)
{