summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-11-27 02:17:25 +0100
committerGitHub <noreply@github.com>2020-11-27 02:17:25 +0100
commitcecbc65ea0a9758b6ff754fd013797aec74045db (patch)
treef9a6adec4f35fdf82fddefba227737ace8e32fd6 /Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp
parent4c9ffb58fa7b15c49c509e1a8d18e5012d345414 (diff)
parent978e5469af55f4fc30c94bbf66c8ab3ae4681c85 (diff)
Merge pull request #9286 from lioncash/core-log6
Frontends: Migrate logs over to fmt
Diffstat (limited to 'Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp')
-rw-r--r--Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp
index a31384aee4..c8b19678b3 100644
--- a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp
+++ b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp
@@ -427,7 +427,7 @@ void NetPlayDialog::OnStart()
const auto game = FindGameFile(m_current_game_identifier);
if (!game)
{
- PanicAlertT("Selected game doesn't exist in game list!");
+ PanicAlertFmtT("Selected game doesn't exist in game list!");
return;
}
@@ -876,7 +876,7 @@ void NetPlayDialog::OnMsgStartGame()
if (auto game = FindGameFile(m_current_game_identifier))
client->StartGame(game->GetFilePath());
else
- PanicAlertT("Selected game doesn't exist in game list!");
+ PanicAlertFmtT("Selected game doesn't exist in game list!");
}
UpdateDiscordPresence();
});
@@ -1099,7 +1099,7 @@ void NetPlayDialog::LoadSettings()
}
else
{
- WARN_LOG(NETPLAY, "Unknown network mode '%s', using 'fixeddelay'", network_mode.c_str());
+ WARN_LOG_FMT(NETPLAY, "Unknown network mode '{}', using 'fixeddelay'", network_mode);
m_fixed_delay_action->setChecked(true);
}
}