| 6703 | */ |
| 6704 | |
| 6705 | static int iscd32 (int ei) |
| 6706 | { |
| 6707 | if (ei >= INPUTEVENT_JOY1_CD32_FIRST && ei <= INPUTEVENT_JOY1_CD32_LAST) { |
| 6708 | cd32_pad_enabled[0] = 1; |
| 6709 | return 1; |
| 6710 | } |
| 6711 | if (ei >= INPUTEVENT_JOY2_CD32_FIRST && ei <= INPUTEVENT_JOY2_CD32_LAST) { |
| 6712 | cd32_pad_enabled[1] = 1; |
| 6713 | return 2; |
| 6714 | } |
| 6715 | return 0; |
| 6716 | } |
| 6717 | |
| 6718 | static int isparport (int ei) |
| 6719 | { |
no outgoing calls
no test coverage detected