| 587 | } |
| 588 | |
| 589 | void FCEUD_SetInput(bool fourscore, bool microphone, ESI port0, ESI port1, ESIFC fcexp) |
| 590 | { |
| 591 | eoptions &= ~EO_FOURSCORE; |
| 592 | if(fourscore) eoptions |= EO_FOURSCORE; |
| 593 | |
| 594 | replaceP2StartWithMicrophone = microphone; |
| 595 | |
| 596 | InputType[0]=port0; |
| 597 | InputType[1]=port1; |
| 598 | InputType[2]=fcexp; |
| 599 | InitInputPorts(fourscore); |
| 600 | } |
| 601 | |
| 602 | //Initializes the emulator with the current input port configuration |
| 603 | void InitInputPorts(bool fourscore) |
no test coverage detected