Ensure surfaces are unlocked when disposing of GuiApi

actually properly fixes #2571 for real this time
This commit is contained in:
YoshiRulz 2021-01-19 01:14:49 +10:00
parent bba4286123
commit a0ebb2f551
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 0 deletions

View File

@ -597,6 +597,8 @@ namespace BizHawk.Client.Common
public void Dispose()
{
UnlockSurface(DisplaySurfaceID.EmuCore);
UnlockSurface(DisplaySurfaceID.Client);
foreach (var brush in _solidBrushes.Values) brush.Dispose();
foreach (var brush in _pens.Values) brush.Dispose();
}