| 694 | } |
| 695 | |
| 696 | void FCEU_QSimpleCommand(int cmd) |
| 697 | { |
| 698 | if(FCEUnetplay) |
| 699 | FCEUNET_SendCommand(cmd, 0); |
| 700 | else |
| 701 | { |
| 702 | if(!FCEUMOV_Mode(MOVIEMODE_TASEDITOR)) // TAS Editor will do the command himself |
| 703 | FCEU_DoSimpleCommand(cmd); |
| 704 | if(FCEUMOV_Mode(MOVIEMODE_RECORD|MOVIEMODE_TASEDITOR)) |
| 705 | FCEUMOV_AddCommand(cmd); |
| 706 | } |
| 707 | } |
| 708 | |
| 709 | void FCEUI_FDSSelect(void) |
| 710 | { |
no test coverage detected