MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / MultiDoConfigSave

Function MultiDoConfigSave

Descent3/multi_ui.cpp:1066–1075  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1064}
1065
1066void 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
1077void MultiDoConfigLoad(void) {
1078 char file[_MAX_PATH * 2];

Callers

nothing calls this directly

Calls 3

DoPathFileDialogFunction · 0.85
MultiSaveSettingsFunction · 0.85
ddio_MakePathFunction · 0.50

Tested by

no test coverage detected