1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 17:02:55 +08:00

Add disposal of ManualResetEventSlim

This commit is contained in:
Dean Herbert 2024-08-30 18:44:51 +09:00
parent 1b9942cb30
commit 2033a5e157
No known key found for this signature in database

View File

@ -133,7 +133,9 @@ namespace osu.Game.Database
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
loaded.Set();
loaded.Dispose();
realmSubscription?.Dispose();
}