0x004412CE
| 255 | |
| 256 | // 0x004412CE |
| 257 | void resolvePaths() |
| 258 | { |
| 259 | _configurablePaths.install = resolveLocoInstallPath(); |
| 260 | |
| 261 | // Figure out what save directory to default to |
| 262 | auto configLastSavePath = fs::u8path(Config::get().lastSavePath); |
| 263 | _configurablePaths.saves = tryPathOrDefault(configLastSavePath, PathId::save); |
| 264 | |
| 265 | // Figure out what landscape directory to default to |
| 266 | auto configLastLandscapePath = fs::u8path(Config::get().lastLandscapePath); |
| 267 | _configurablePaths.landscapes = tryPathOrDefault(configLastLandscapePath, PathId::landscape); |
| 268 | |
| 269 | autoCreateDirectory(getPath(PathId::customObjects)); |
| 270 | } |
| 271 | |
| 272 | class ThousandsSepFacet : public std::numpunct<char> |
| 273 | { |
no test coverage detected