| 1075 | } |
| 1076 | |
| 1077 | void MultiDoConfigLoad(void) { |
| 1078 | char file[_MAX_PATH * 2]; |
| 1079 | |
| 1080 | ddio_MakePath(file, Base_directory, "custom", "settings", NULL); |
| 1081 | if (DoPathFileDialog(false, file, TXT_MULTILOADSET, "*.mps", PFDF_FILEMUSTEXIST)) |
| 1082 | MultiLoadSettings(file); |
| 1083 | } |
| 1084 | |
| 1085 | #define CHAR_LEFT_ARROW 24 |
| 1086 | #define CHAR_UP_ARROW 25 |
nothing calls this directly
no test coverage detected