| 117 | } |
| 118 | |
| 119 | std::filesystem::path DCSWorld::GetInstalledPath(Version version) { |
| 120 | switch (version) { |
| 121 | case Version::OPEN_BETA: |
| 122 | return GetDCSPath("DCS World OpenBeta"); |
| 123 | case Version::STABLE: |
| 124 | return GetDCSPath("DCS World"); |
| 125 | } |
| 126 | return {}; |
| 127 | } |
| 128 | |
| 129 | std::filesystem::path DCSWorld::GetSavedGamesPath(Version version) { |
| 130 | const auto savedGames = Filesystem::GetKnownFolderPath<FOLDERID_SavedGames>(); |
nothing calls this directly
no test coverage detected