1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-23 11:46:26 -05:00

gtk: Fix a NRE when disposing OpenGL (#4648)

This commit is contained in:
TSRBerry
2023-04-10 17:00:23 +02:00
committed by GitHub
parent 9db73f74cf
commit a947a45d81

View File

@@ -119,7 +119,7 @@ namespace Ryujinx.Ui
}
catch (Exception) { }
Device.DisposeGpu();
Device?.DisposeGpu();
NpadManager.Dispose();
// Unbind context and destroy everything
@@ -129,7 +129,7 @@ namespace Ryujinx.Ui
}
catch (Exception) { }
_openGLContext.Dispose();
_openGLContext?.Dispose();
}
}
}