mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-23 13:09:11 +00:00
Added check for failure of D3D_ActivateRenderer()
This commit is contained in:
parent
127841f315
commit
cac4e31261
1 changed files with 3 additions and 1 deletions
|
@ -1077,7 +1077,9 @@ D3D_SetRenderTargetInternal(SDL_Renderer * renderer, SDL_Texture * texture)
|
||||||
static int
|
static int
|
||||||
D3D_SetRenderTarget(SDL_Renderer * renderer, SDL_Texture * texture)
|
D3D_SetRenderTarget(SDL_Renderer * renderer, SDL_Texture * texture)
|
||||||
{
|
{
|
||||||
D3D_ActivateRenderer(renderer);
|
if (D3D_ActivateRenderer(renderer) < 0) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return D3D_SetRenderTargetInternal(renderer, texture);
|
return D3D_SetRenderTargetInternal(renderer, texture);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue