mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
Fix reused texture IDs not being reinitialized.
This commit is contained in:
parent
edf6a20618
commit
b3370c97af
@ -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)) {
|
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);
|
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)) {
|
if(textures[id].tex.data == NULL && !C3D_TexInit(&textures[id].tex, (u16) pow2Width, (u16) pow2Height, format)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user