From 61c0d816672fdc5a5d580212599db5aafedfdcaa Mon Sep 17 00:00:00 2001 From: Megamouse Date: Fri, 10 Feb 2023 02:46:42 +0100 Subject: [PATCH] cellPad/vsh: fix sixaxis interaction This allows you to influence the particles in the XMB --- rpcs3/Emu/Cell/lv2/sys_hid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_hid.cpp b/rpcs3/Emu/Cell/lv2/sys_hid.cpp index 86450772cd..6746c0dc0c 100644 --- a/rpcs3/Emu/Cell/lv2/sys_hid.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_hid.cpp @@ -35,7 +35,7 @@ error_code sys_hid_manager_open(u64 device_type, u64 port_no, vm::ptr handl if (device_type == 1) { cellPadInit(7); - cellPadSetPortSetting(port_no /* 0 */, CELL_PAD_SETTING_LDD | CELL_PAD_SETTING_PRESS_ON); + cellPadSetPortSetting(port_no /* 0 */, CELL_PAD_SETTING_LDD | CELL_PAD_SETTING_PRESS_ON | CELL_PAD_SETTING_SENSOR_ON); } return CELL_OK;