mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
(XMB) Another workaround for the same bug
This commit is contained in:
parent
75bd53967d
commit
1035cdd132
@ -218,7 +218,7 @@ static void lakka_draw_icon(lakka_handle_t *lakka,
|
||||
return;
|
||||
|
||||
if (x < -lakka->icon_size || x > gl->win_width
|
||||
|| y < 0 || y > gl->win_height + lakka->icon_size)
|
||||
|| y < lakka->icon_size/2 || y > gl->win_height + lakka->icon_size)
|
||||
return;
|
||||
|
||||
GLfloat color[] = {
|
||||
|
@ -197,7 +197,7 @@ static void xmb_draw_icon(GLuint texture, float x, float y,
|
||||
return;
|
||||
|
||||
if (x < -xmb->icon_size || x > gl->win_width
|
||||
|| y < 0 || y > gl->win_height + xmb->icon_size)
|
||||
|| y < lakka->icon_size/2 || y > gl->win_height + xmb->icon_size)
|
||||
return;
|
||||
|
||||
GLfloat color[] = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user