* Construct a filename for a height map. * @param name Filename. * @return The completed filename. */
| 226 | * @return The completed filename. |
| 227 | */ |
| 228 | std::string FiosMakeHeightmapName(std::string_view name) |
| 229 | { |
| 230 | return FiosMakeFilename(_fios_path, name, fmt::format(".{}", GetCurrentScreenshotExtension())); |
| 231 | } |
| 232 | |
| 233 | typedef std::tuple<FiosType, std::string> FiosGetTypeAndNameProc(SaveLoadOperation fop, std::string_view filename, std::string_view ext); |
| 234 |
no test coverage detected