mirror of https://github.com/encounter/SDL.git
Destroy texture properly
This commit is contained in:
parent
7b0486d490
commit
2a70d492f0
|
@ -465,9 +465,10 @@ PS2_RenderPresent(SDL_Renderer * renderer)
|
|||
static void
|
||||
PS2_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
|
||||
{
|
||||
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
|
||||
GSTEXTURE *ps2_texture = (GSTEXTURE *) texture->driverdata;
|
||||
|
||||
SDL_FreeSurface(surface);
|
||||
SDL_free(ps2_texture->Mem);
|
||||
SDL_free(ps2_texture);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in New Issue