Support PNG icons in the SDL test code

This commit is contained in:
Sam Lantinga
2025-11-24 13:16:00 -08:00
parent 4e79d2ad64
commit 56269cd010

View File

@@ -1143,7 +1143,7 @@ static SDL_Surface *SDLTest_LoadIcon(const char *file)
SDL_Surface *icon;
/* Load the icon surface */
icon = SDL_LoadBMP(file);
icon = SDL_LoadSurface(file);
if (!icon) {
SDL_Log("Couldn't load %s: %s", file, SDL_GetError());
return NULL;