mirror of
https://github.com/Perfare/Il2CppDumper.git
synced 2025-01-25 02:03:02 -03:00
修复bug
This commit is contained in:
parent
5ca3a0b0c7
commit
f1c1039d1c
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ namespace Il2CppDumper
|
|||
pos = MapVATR((uint)ptr) + 4 * fieldIndexInType;
|
||||
else
|
||||
pos = MapVATR((ulong)ptr) + 4ul * (ulong)fieldIndexInType;
|
||||
if (pos <= BaseStream.Length - 4)
|
||||
if ((long)pos <= BaseStream.Length - 4)
|
||||
{
|
||||
Position = pos;
|
||||
return ReadInt32();
|
||||
|
|
Loading…
Add table
Reference in a new issue