mirror of
https://github.com/libretro/RetroArch
synced 2025-02-07 03:40:24 +00:00
(XMB) Vertical Fade fix (#14525)
This commit is contained in:
parent
ababfcc0c8
commit
feea90d877
@ -3658,7 +3658,7 @@ static int xmb_draw_item(
|
||||
new_alpha = max_alpha;
|
||||
|
||||
/* Horizontal animation requires breathing room on x-axis */
|
||||
if (new_alpha < node->alpha && node->x > (-icon_space * 2) && node->x < (icon_space * 2))
|
||||
if (node->x > (-icon_space * 2) && node->x < (icon_space * 2))
|
||||
node->alpha = node->label_alpha = new_alpha;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user