mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-18 09:18:14 +00:00
Added check for failure of D3D_ActivateRenderer()
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user