mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2025-02-09 13:14:46 +01:00
Avoid opening KIP files twice
This commit is contained in:
parent
c73493b505
commit
7050b9a681
@ -17,8 +17,7 @@ namespace LibHac
|
||||
|
||||
public Kip(IStorage storage)
|
||||
{
|
||||
Storage = storage;
|
||||
Header = new KipHeader(Storage);
|
||||
Header = new KipHeader(storage);
|
||||
|
||||
Size = HeaderSize;
|
||||
|
||||
@ -28,6 +27,8 @@ namespace LibHac
|
||||
SectionOffsets[index] = Size;
|
||||
Size += sectionSize;
|
||||
}
|
||||
|
||||
Storage = storage.Slice(0, Size);
|
||||
}
|
||||
|
||||
public IStorage OpenSection(int index)
|
||||
@ -194,12 +195,8 @@ namespace LibHac
|
||||
|
||||
for (int i = 0; i < KipCount; i++)
|
||||
{
|
||||
// How to get the KIP's size the lazy way
|
||||
var kip = new Kip(Storage.Slice(offset));
|
||||
|
||||
Kips[i] = new Kip(Storage.Slice(offset, kip.Size));
|
||||
|
||||
offset += kip.Size;
|
||||
Kips[i] = new Kip(Storage.Slice(offset));
|
||||
offset += Kips[i].Size;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user