mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-23 19:24:46 +00:00
Hide sublabels on super small screens like the one of Gamegirl 320x240
This commit is contained in:
parent
997fa98887
commit
4bc04f7b28
@ -2265,7 +2265,8 @@ static void xmb_draw_items(
|
||||
menu_animation_ctl(MENU_ANIMATION_CTL_TICKER, &ticker);
|
||||
|
||||
label_offset = xmb->margins.label.top;
|
||||
if (i == current && menu_entry_get_sublabel(i, entry_sublabel, sizeof(entry_sublabel)))
|
||||
if (i == current && width > 320 && height > 240
|
||||
&& menu_entry_get_sublabel(i, entry_sublabel, sizeof(entry_sublabel)))
|
||||
{
|
||||
label_offset = - xmb->margins.label.top;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user