Resets the NES
| 763 | |
| 764 | //Resets the NES |
| 765 | void FCEUI_ResetNES(void) |
| 766 | { |
| 767 | if(!FCEU_IsValidUI(FCEUI_RESET)) |
| 768 | return; |
| 769 | |
| 770 | FCEU_DispMessage("Command: Soft reset", 0); |
| 771 | FCEU_QSimpleCommand(FCEUNPCMD_RESET); |
| 772 | ResetFrameCounter(); |
| 773 | } |
| 774 | |
| 775 | //Powers off the NES |
| 776 | void FCEUI_PowerNES(void) |
no test coverage detected