Skip to content
This repository was archived by the owner on Jun 28, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ END TEMPLATE-->
### Bugfixes

* Windows will stay at relative position not absolute pixel position on window resize.
* Dispose `AudioStream` when the `AudioResource` is disposed.

### Other

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,10 @@ public static implicit operator AudioStream(AudioResource res)
{
return res.AudioStream;
}

public override void Dispose()
{
base.Dispose();
AudioStream.Dispose();
}
}
Loading