Skip to content

Commit

Permalink
Fix missing expression for ResizeStringToken :)
Browse files Browse the repository at this point in the history
  • Loading branch information
EliotVU committed Sep 27, 2022
1 parent 3653f8e commit b4b7977
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/Core/Tokens/OtherTokens.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,15 @@ public override void Deserialize(IUnrealStream stream)
{
Length = stream.ReadByte();
Decompiler.AlignSize(sizeof(byte));

// Could there have been an explicit cast too maybe?
DeserializeNext();
}

public override string Decompile()
{
return DecompileNext();
}

// TODO: Decompile format?
}

public class BeginFunctionToken : Token
Expand Down

0 comments on commit b4b7977

Please sign in to comment.