Skip to content

Commit

Permalink
read uint, since we write it
Browse files Browse the repository at this point in the history
fixes a bug
  • Loading branch information
SirJosh3917 committed May 7, 2019
1 parent 6ee9679 commit a1aa064
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ private long ReadBeginning()
return 0;
}

private long ReadDownsizedLong() => GetPosition() + _br.ReadInt32();
private long ReadDownsizedLong() => GetPosition() + _br.ReadUInt32();

private uint ReadVariableLength()
{
Expand Down

0 comments on commit a1aa064

Please sign in to comment.