| 626 | } |
| 627 | |
| 628 | std::string SteamworksUGCItem::GetPath() { |
| 629 | if (ItemState() & k_EItemStateInstalled) { |
| 630 | if (need_update_installed_size) { |
| 631 | UpdateModInstallationInfo(); |
| 632 | need_update_installed_size = false; |
| 633 | } |
| 634 | return std::string(mod_path); |
| 635 | } else { |
| 636 | return std::string(""); |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | std::string SteamworksUGCItem::GetSteamworksIDString() { |
| 641 | std::stringstream ss; |
no test coverage detected