From b3370c97afe230728b9fdef7556937f81ff6b76c Mon Sep 17 00:00:00 2001 From: Steveice10 Date: Sat, 15 Jul 2017 12:35:56 -0700 Subject: [PATCH] Fix reused texture IDs not being reinitialized. --- source/core/screen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/core/screen.c b/source/core/screen.c index 98f3017..64dc601 100644 --- a/source/core/screen.c +++ b/source/core/screen.c @@ -346,6 +346,7 @@ static void screen_prepare_texture(u32* pow2WidthOut, u32* pow2HeightOut, u32 id if(textures[id].tex.data != NULL && (textures[id].tex.width != pow2Width || textures[id].tex.height != pow2Height || textures[id].tex.fmt != format)) { C3D_TexDelete(&textures[id].tex); + textures[id].tex.data = NULL; } if(textures[id].tex.data == NULL && !C3D_TexInit(&textures[id].tex, (u16) pow2Width, (u16) pow2Height, format)) {