mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Merge pull request #5332 from heuripedes/xmb-improv
(xmb) Skip drawing the fading list when it is already transparent
This commit is contained in:
commit
842845a9fb
@ -2265,7 +2265,15 @@ static void xmb_draw_items(
|
|||||||
menu_entries_ctl(MENU_ENTRIES_CTL_START_GET, &i);
|
menu_entries_ctl(MENU_ENTRIES_CTL_START_GET, &i);
|
||||||
|
|
||||||
if (list == xmb->selection_buf_old)
|
if (list == xmb->selection_buf_old)
|
||||||
|
{
|
||||||
|
xmb_node_t *node = (xmb_node_t*)
|
||||||
|
menu_entries_get_userdata_at_offset(list, current);
|
||||||
|
|
||||||
|
if ((uint8_t)(255 * node->alpha) == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
|
}
|
||||||
|
|
||||||
first = i;
|
first = i;
|
||||||
last = end - 1;
|
last = end - 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user