Dispose pipeline before window

This commit is contained in:
Isaac Marovitz
2024-03-20 14:35:35 -04:00
committed by Evan Husted
parent 6a67822b3b
commit e353e3d3fc

View File

@@ -246,8 +246,8 @@ namespace Ryujinx.Graphics.Metal
public void Dispose() public void Dispose()
{ {
_window.Dispose();
_pipeline.Dispose(); _pipeline.Dispose();
_window.Dispose();
} }
} }
} }