mirror of https://github.com/ppy/osu
Fix SampleStore isn't being disposed
This commit is contained in:
parent
e6872629f3
commit
ed565b1e59
|
@ -98,7 +98,7 @@ protected void Dispose(bool disposing)
|
|||
|
||||
isDisposed = true;
|
||||
|
||||
if (ShaderManager.IsNotNull()) SampleStore.Dispose();
|
||||
if (SampleStore.IsNotNull()) SampleStore.Dispose();
|
||||
if (TextureStore.IsNotNull()) TextureStore.Dispose();
|
||||
if (ShaderManager.IsNotNull()) ShaderManager.Dispose();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue