haiku: fix use of SDL_ConvertSurfaceFormat

This commit is contained in:
Anonymous Maarten
2022-12-02 22:18:46 +01:00
committed by Anonymous Maarten
parent 5ed00d34aa
commit f85ef6fc3c

View File

@@ -190,7 +190,7 @@ static SDL_Cursor * HAIKU_CreateCursor(SDL_Surface * surface, int hot_x, int hot
SDL_Cursor *cursor; SDL_Cursor *cursor;
SDL_Surface *converted; SDL_Surface *converted;
converted = SDL_ConvertSurfaceFormat(surface, SDL_PIXELFORMAT_ARGB8888, 0); converted = SDL_ConvertSurfaceFormat(surface, SDL_PIXELFORMAT_ARGB8888);
if (converted == NULL) { if (converted == NULL) {
return NULL; return NULL;
} }