| 268 | } |
| 269 | |
| 270 | std::string GetSteamPath() { |
| 271 | std::lock_guard<std::mutex> lock(g_mutex); |
| 272 | if (g_steamPath.empty()) |
| 273 | g_steamPath = DetectSteamPath(); |
| 274 | return g_steamPath; |
| 275 | } |
| 276 | |
| 277 | uint32_t GetAccountId() { |
| 278 | return g_accountId.load(std::memory_order_acquire); |
no test coverage detected