Remove useless void line.

This commit is contained in:
gambas 2020-06-29 20:23:37 +02:00
parent 4b2967df56
commit b1cddd6c3d

View File

@ -70,7 +70,6 @@ static void *temp_image(GB_IMG *img)
if (img && img->data)
surface = SDL_CreateRGBSurfaceFrom(img->data, img->width, img->height, 32, img->width * sizeof(int), RMASK, GMASK, BMASK, AMASK);
return SDL_CreateImage(surface);
}