Merge pull request #6616 from Tatsuya79/master

Fix console layout case.
This commit is contained in:
Twinaphex 2018-04-24 18:21:02 +02:00 committed by GitHub
commit f2527b3a3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3863,11 +3863,17 @@ static void xmb_layout(xmb_handle_t *xmb)
break;
/* PS3 */
case 1:
xmb_layout_ps3(xmb, width);
{
xmb->use_ps3_layout = true;
xmb_layout_ps3(xmb, width);
}
break;
/* PSP */
case 2:
xmb_layout_psp(xmb, width);
{
xmb->use_ps3_layout = false;
xmb_layout_psp(xmb, width);
}
break;
}