Set texture data pointer to NULL when unloading a texture. Fixes duplicate icons in title list.

This commit is contained in:
Steveice10 2017-08-16 09:38:51 -07:00
parent 4bada77420
commit 8d917542fb

View File

@ -462,6 +462,7 @@ void screen_unload_texture(u32 id) {
}
C3D_TexDelete(&textures[id].tex);
textures[id].tex.data = NULL;
textures[id].allocated = false;
textures[id].width = 0;