| 36 | } |
| 37 | |
| 38 | std::string DebugString() const { |
| 39 | return std::format( |
| 40 | "SteamAppId={} SteamGameId={} SteamOverlayGameId={} resolvedAppId={}", |
| 41 | steamAppId.value_or(k_uAppIdInvalid), |
| 42 | steamGameIdAppId.value_or(k_uAppIdInvalid), |
| 43 | steamOverlayGameIdAppId.value_or(k_uAppIdInvalid), |
| 44 | ResolveAppId()); |
| 45 | } |
| 46 | }; |
| 47 | |
| 48 | struct ProcessSnapshot { |
nothing calls this directly
no test coverage detected