Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeugma440 committed Nov 8, 2024
1 parent 6871023 commit e3350fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ATL/AudioData/IO/Ogg.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public void ReadFromStream(Stream r)
Segments = buffer[0];

LacingValues = new byte[Segments];
r.Read(LacingValues, 0, Segments);
Segments = (byte)r.Read(LacingValues, 0, Segments);
}

public static OggPageHeader ReadFromStream(BufferedBinaryReader r)
Expand Down

0 comments on commit e3350fd

Please sign in to comment.