Shows the input configuration dialog.
| 1813 | |
| 1814 | //Shows the input configuration dialog. |
| 1815 | void ConfigInput(HWND hParent) |
| 1816 | { |
| 1817 | DialogBox(fceu_hInstance, "INPUTCONFIG", hParent, InputConCallB); |
| 1818 | |
| 1819 | //in case the input config changes while a game is running, reconfigure the input ports |
| 1820 | if(GameInfo) |
| 1821 | { |
| 1822 | InitInputPorts((eoptions & EO_FOURSCORE)!=0); |
| 1823 | } |
| 1824 | } |
| 1825 | |
| 1826 | void DestroyInput(void) |
| 1827 | { |
no test coverage detected