Skip to content

Commit

Permalink
Merge pull request #3737 from frangarcj/master
Browse files Browse the repository at this point in the history
(VITA) Disable Back Touch if in menu
  • Loading branch information
inactive123 committed Oct 5, 2016
2 parents 183dc91 + d32bd63 commit db8eb90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion input/drivers_joypad/psp_joypad.c
Expand Up @@ -232,7 +232,7 @@ static void psp_joypad_poll(void)
continue;
#endif
#if defined(VITA)
if (psp2_model == SCE_KERNEL_MODEL_VITA) {
if (psp2_model == SCE_KERNEL_MODEL_VITA && !menu_driver_ctl(RARCH_MENU_CTL_IS_ALIVE, NULL)) {
SceTouchData back = {0};
sceTouchPeek(SCE_TOUCH_PORT_BACK, &back, 1);
for (int i = 0; i < back.reportNum; i++) {
Expand Down

0 comments on commit db8eb90

Please sign in to comment.