mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Fix incorrect assert in BucketTree.NodeBuffer.Allocate
This commit is contained in:
parent
b3dc972881
commit
496858c7a7
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,7 @@ namespace LibHac.FsSystem
|
||||||
|
|
||||||
public bool Allocate(int nodeSize)
|
public bool Allocate(int nodeSize)
|
||||||
{
|
{
|
||||||
Assert.SdkRequiresNotNull(_header);
|
Assert.SdkRequiresNull(_header);
|
||||||
|
|
||||||
_header = new long[nodeSize / sizeof(long)];
|
_header = new long[nodeSize / sizeof(long)];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue