Workaround for crash at shutdown in testffmpeg
I'm not sure if this is something in SDL crashing or something in ffmpeg, but it's safer to leave the D3D DLLs loaded.
This commit is contained in:
parent
e74171b1ae
commit
9755e490c0
1 changed files with 2 additions and 2 deletions
|
@ -355,11 +355,11 @@ static void D3D11_ReleaseAll(SDL_Renderer *renderer)
|
||||||
* to prevent IUnknown::Release() calls from crashing.
|
* to prevent IUnknown::Release() calls from crashing.
|
||||||
*/
|
*/
|
||||||
if (data->hD3D11Mod) {
|
if (data->hD3D11Mod) {
|
||||||
SDL_UnloadObject(data->hD3D11Mod);
|
//SDL_UnloadObject(data->hD3D11Mod);
|
||||||
data->hD3D11Mod = NULL;
|
data->hD3D11Mod = NULL;
|
||||||
}
|
}
|
||||||
if (data->hDXGIMod) {
|
if (data->hDXGIMod) {
|
||||||
SDL_UnloadObject(data->hDXGIMod);
|
//SDL_UnloadObject(data->hDXGIMod);
|
||||||
data->hDXGIMod = NULL;
|
data->hDXGIMod = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue