Dispose pipeline before window

This commit is contained in:
Isaac Marovitz 2024-03-20 14:35:35 -04:00 committed by Isaac Marovitz
parent 188728bc1e
commit f9b601d038
1 changed files with 1 additions and 1 deletions

View File

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