mirror of https://github.com/encounter/SDL.git
Changed function to return -1 through SDL_Error() instead of plain -1.
This commit is contained in:
parent
0f8d9995fe
commit
4e270de15d
|
@ -348,8 +348,7 @@ SDL_GetRendererOutputSize(SDL_Renderer * renderer, int *w, int *h)
|
||||||
return 0;
|
return 0;
|
||||||
} else {
|
} else {
|
||||||
/* This should never happen */
|
/* This should never happen */
|
||||||
SDL_SetError("Renderer doesn't support querying output size");
|
return SDL_SetError("Renderer doesn't support querying output size");
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue