This commit is contained in:
Angelo Salese 2013-02-20 23:53:09 +00:00
parent 369d1ebbf8
commit d9adbbf383

View File

@ -928,7 +928,7 @@ UINT8 saturn_state::smpc_th_control_mode(UINT8 pad_n)
const char *const padnames[] = { "JOY1", "JOY2" };
UINT8 res = 0;
th = (pad_n == 0) ? ((m_smpc.PDR1>>5) & 3) : ((m_smpc.PDR2>>6) & 3);
th = (pad_n == 0) ? ((m_smpc.PDR1>>5) & 3) : ((m_smpc.PDR2>>5) & 3);
if (LOG_SMPC) printf("SMPC: SH-2 TH control mode, returning pad data %d for phase %d\n",pad_n+1, th);