Dispose pipeline before window

This commit is contained in:
Isaac Marovitz 2024-03-20 14:35:35 -04:00
parent fa349408b1
commit 1f7a5901ad
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
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();
}
}
}