Renamed SDL_HasWindowSurface to SDL_WindowHasSurface

Fixes https://github.com/libsdl-org/SDL/issues/9034
This commit is contained in:
Sam Lantinga
2024-02-09 16:46:58 -08:00
parent 1ec0e22bcd
commit f95b7ee4da
9 changed files with 16 additions and 8 deletions

View File

@@ -3119,7 +3119,7 @@ static SDL_Surface *SDL_CreateWindowFramebuffer(SDL_Window *window)
return SDL_CreateSurfaceFrom(pixels, w, h, pitch, format);
}
SDL_bool SDL_HasWindowSurface(SDL_Window *window)
SDL_bool SDL_WindowHasSurface(SDL_Window *window)
{
CHECK_WINDOW_MAGIC(window, SDL_FALSE);