Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LazyDuchess committed Jul 6, 2024
1 parent 5eb08fe commit bf96ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/OpenTS2/Content/DBPF/MP3AudioAsset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public override AudioClip Clip
public MP3AudioAsset(byte[] data) : base(data)
{
_stream = new MemoryStream(data);
_mp3Reader = new Mp3FileReader(stream);
_mp3Reader = new Mp3FileReader(_stream);
_sampleProvider = _mp3Reader.ToSampleProvider();
}

Expand Down

0 comments on commit bf96ca2

Please sign in to comment.