* Lets the user save a savestate to a specific file **/
| 705 | * Lets the user save a savestate to a specific file |
| 706 | **/ |
| 707 | void FCEUD_SaveStateAs(void) |
| 708 | { |
| 709 | std::string fname = GetFilename("Save State As...", 0, "Save States|*.fc0"); |
| 710 | if (!fname.size()) |
| 711 | return; // no filename selected, quit the whole thing |
| 712 | |
| 713 | FCEUI_SaveState(fname.c_str()); |
| 714 | } |
| 715 | |
| 716 | /** |
| 717 | * Lets the user load a savestate from a specific file |
nothing calls this directly
no test coverage detected