gtk: Fix a NRE when disposing OpenGL (#4648)
This commit is contained in:
parent
59e1fe4f75
commit
dce48a3e38
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue