mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
cellPad: don't report fake move pads as connected
This commit is contained in:
parent
5fb6be4bf6
commit
70e40ce857
4 changed files with 20 additions and 11 deletions
|
|
@ -748,7 +748,7 @@ void PadHandlerBase::process()
|
|||
|
||||
pad->m_port_status |= CELL_PAD_STATUS_CONNECTED + CELL_PAD_STATUS_ASSIGN_CHANGES;
|
||||
|
||||
if (m_emulation)
|
||||
if (m_emulation && !pad->is_fake_move)
|
||||
{
|
||||
pad_state_notify_state_change(i, CELL_PAD_STATUS_CONNECTED);
|
||||
}
|
||||
|
|
@ -776,7 +776,7 @@ void PadHandlerBase::process()
|
|||
|
||||
pad->m_port_status |= CELL_PAD_STATUS_CONNECTED + CELL_PAD_STATUS_ASSIGN_CHANGES;
|
||||
|
||||
if (m_emulation)
|
||||
if (m_emulation && !pad->is_fake_move)
|
||||
{
|
||||
pad_state_notify_state_change(i, CELL_PAD_STATUS_CONNECTED);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue