mirror of
https://github.com/Perfare/Il2CppDumper.git
synced 2025-01-09 11:17:35 -03:00
Fixed #590
This commit is contained in:
parent
63c5af8d12
commit
7159995e0e
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ namespace Il2CppDumper
|
|||
metadataUsageDic[(Il2CppMetadataUsage)usage][metadataUsagePair.destinationIndex] = decodedIndex;
|
||||
}
|
||||
}
|
||||
maxMetadataUsages = metadataUsageDic.Max(x => x.Value.Max(y => y.Key)) + 1;
|
||||
maxMetadataUsages = metadataUsageDic.Max(x => x.Value.Select(y => y.Key).DefaultIfEmpty().Max()) + 1;
|
||||
}
|
||||
|
||||
public uint GetEncodedIndexType(uint index)
|
||||
|
|
Loading…
Reference in a new issue