Skip to content

Commit

Permalink
Update Il2CppRGCTXDefinition.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeengines authored Sep 16, 2024
1 parent 4476b73 commit 05b3c8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion LibCpp2IL/BinaryStructures/Il2CppRGCTXDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ public override void Read(ClassReadingBinaryReader reader)
type = IsLessThan(29) ? (Il2CppRGCTXDataType)reader.ReadInt32() : (Il2CppRGCTXDataType)reader.ReadInt64();
if (IsLessThan(27.2f))
{
_defData = reader.ReadReadable<Il2CppRGCTXDefinitionData>();
_defData = new Il2CppRGCTXDefinitionData();
_defData.Read(reader);
}
else
{
Expand Down

0 comments on commit 05b3c8a

Please sign in to comment.