Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/application/StarStatisticsService_pc_steam.cpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-06-27 20:23:44 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-06-27 20:23:44 +1000
commit332983c97b7a729c4dc5f19aa9ee4a22c420f7d8 (patch)
treefd9c441b796b522bdd5c7f8fbd32f51b8eff2a28 /source/application/StarStatisticsService_pc_steam.cpp
parent14b9689b6d4f4ad5276c88130dc6e449bedc0709 (diff)
The Formatting String Catastrophe
Diffstat (limited to 'source/application/StarStatisticsService_pc_steam.cpp')
-rw-r--r--source/application/StarStatisticsService_pc_steam.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/application/StarStatisticsService_pc_steam.cpp b/source/application/StarStatisticsService_pc_steam.cpp
index 89239fd..bf74b7f 100644
--- a/source/application/StarStatisticsService_pc_steam.cpp
+++ b/source/application/StarStatisticsService_pc_steam.cpp
@@ -52,7 +52,7 @@ bool SteamStatisticsService::reportEvent(String const&, Json const&) {
bool SteamStatisticsService::unlockAchievement(String const& name) {
if (!SteamUserStats()->SetAchievement(name.utf8Ptr())) {
- Logger::error("Cannot set Steam achievement %s", name);
+ Logger::error("Cannot set Steam achievement {}", name);
return false;
}
return true;
@@ -94,7 +94,7 @@ void SteamStatisticsService::onUserStatsReceived(UserStatsReceived_t* callback)
return;
if (callback->m_eResult != k_EResultOK) {
- m_error = {strf("Steam RequestCurrentStats failed with code %d", (int)callback->m_eResult)};
+ m_error = {strf("Steam RequestCurrentStats failed with code {}", (int)callback->m_eResult)};
return;
}
@@ -117,14 +117,14 @@ void SteamStatisticsService::onUserStatsStored(UserStatsStored_t* callback) {
return;
}
- m_error = {strf("Steam StoreStats failed with code %d", (int)callback->m_eResult)};
+ m_error = {strf("Steam StoreStats failed with code {}", (int)callback->m_eResult)};
}
void SteamStatisticsService::onAchievementStored(UserAchievementStored_t* callback) {
if (callback->m_nGameID != m_appId)
return;
- Logger::debug("Steam achievement %s stored successfully", callback->m_rgchAchievementName);
+ Logger::debug("Steam achievement {} stored successfully", callback->m_rgchAchievementName);
}
}