| 1064 | } |
| 1065 | |
| 1066 | void MultiDoConfigSave(void) { |
| 1067 | char file[_MAX_PATH * 2]; |
| 1068 | |
| 1069 | ddio_MakePath(file, Base_directory, "custom", "settings", NULL); |
| 1070 | if (DoPathFileDialog(true, file, TXT_MULTISAVESET, "*.mps", 0)) { |
| 1071 | if (stricmp(file + (strlen(file) - 4), ".mps") != 0) |
| 1072 | strcat(file, ".mps"); |
| 1073 | MultiSaveSettings(file); |
| 1074 | } |
| 1075 | } |
| 1076 | |
| 1077 | void MultiDoConfigLoad(void) { |
| 1078 | char file[_MAX_PATH * 2]; |
nothing calls this directly
no test coverage detected