Fix T79089: Crash changing themes

Regression from 2840782d8478f.
This commit is contained in:
Campbell Barton 2020-07-20 17:52:58 +10:00
parent b219ae4498
commit eb5cd628bd

@ -881,7 +881,7 @@ void UI_icons_reload_internal_textures(void)
} }
if (need_icons_with_border && icongltex.tex[1] == NULL) { if (need_icons_with_border && icongltex.tex[1] == NULL) {
icongltex.tex[0] = GPU_texture_create_nD(b32buf_border->x, icongltex.tex[1] = GPU_texture_create_nD(b32buf_border->x,
b32buf_border->y, b32buf_border->y,
0, 0,
2, 2,
@ -891,7 +891,7 @@ void UI_icons_reload_internal_textures(void)
0, 0,
false, false,
NULL); NULL);
GPU_texture_add_mipmap(icongltex.tex[0], GPU_DATA_UNSIGNED_BYTE, 1, b16buf_border->rect); GPU_texture_add_mipmap(icongltex.tex[1], GPU_DATA_UNSIGNED_BYTE, 1, b16buf_border->rect);
} }
} }