mirror of
https://github.com/libretro/RetroArch
synced 2025-04-18 14:42:30 +00:00
Merge pull request #6616 from Tatsuya79/master
Fix console layout case.
This commit is contained in:
commit
f2527b3a3c
@ -3863,11 +3863,17 @@ static void xmb_layout(xmb_handle_t *xmb)
|
|||||||
break;
|
break;
|
||||||
/* PS3 */
|
/* PS3 */
|
||||||
case 1:
|
case 1:
|
||||||
xmb_layout_ps3(xmb, width);
|
{
|
||||||
|
xmb->use_ps3_layout = true;
|
||||||
|
xmb_layout_ps3(xmb, width);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
/* PSP */
|
/* PSP */
|
||||||
case 2:
|
case 2:
|
||||||
xmb_layout_psp(xmb, width);
|
{
|
||||||
|
xmb->use_ps3_layout = false;
|
||||||
|
xmb_layout_psp(xmb, width);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user