mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
Core: Replace usages of StringFromFormat with fmt where applicable
Migrates usages of StringFromFormat over to using fmt.
This commit is contained in:
parent
6282b0d83e
commit
febd1c3dba
30 changed files with 192 additions and 165 deletions
|
@ -18,6 +18,7 @@
|
|||
#include <unordered_set>
|
||||
#include <vector>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <lzo/lzo1x.h>
|
||||
|
||||
#include "Common/CommonPaths.h"
|
||||
|
@ -1064,8 +1065,8 @@ unsigned int NetPlayServer::OnData(sf::Packet& packet, Client& player)
|
|||
|
||||
case SYNC_SAVE_DATA_FAILURE:
|
||||
{
|
||||
m_dialog->AppendChat(StringFromFormat(Common::GetStringT("%s failed to synchronize.").c_str(),
|
||||
player.name.c_str()));
|
||||
m_dialog->AppendChat(
|
||||
fmt::format(Common::GetStringT("{} failed to synchronize."), player.name));
|
||||
m_dialog->OnGameStartAborted();
|
||||
ChunkedDataAbort();
|
||||
m_start_pending = false;
|
||||
|
@ -1108,8 +1109,8 @@ unsigned int NetPlayServer::OnData(sf::Packet& packet, Client& player)
|
|||
|
||||
case SYNC_CODES_FAILURE:
|
||||
{
|
||||
m_dialog->AppendChat(StringFromFormat(
|
||||
Common::GetStringT("%s failed to synchronize codes.").c_str(), player.name.c_str()));
|
||||
m_dialog->AppendChat(
|
||||
fmt::format(Common::GetStringT("{} failed to synchronize codes."), player.name));
|
||||
m_dialog->OnGameStartAborted();
|
||||
m_start_pending = false;
|
||||
}
|
||||
|
@ -1455,15 +1456,14 @@ bool NetPlayServer::SyncSaveData()
|
|||
pac << sf::Uint64{0};
|
||||
}
|
||||
|
||||
SendChunkedToClients(
|
||||
std::move(pac), 1,
|
||||
StringFromFormat("Memory Card %c Synchronization", is_slot_a ? 'A' : 'B'));
|
||||
SendChunkedToClients(std::move(pac), 1,
|
||||
fmt::format("Memory Card {} Synchronization", is_slot_a ? 'A' : 'B'));
|
||||
}
|
||||
else if (SConfig::GetInstance().m_EXIDevice[i] ==
|
||||
ExpansionInterface::EXIDEVICE_MEMORYCARDFOLDER)
|
||||
{
|
||||
const std::string path = File::GetUserPath(D_GCUSER_IDX) + region + DIR_SEP +
|
||||
StringFromFormat("Card %c", is_slot_a ? 'A' : 'B');
|
||||
fmt::format("Card {}", is_slot_a ? 'A' : 'B');
|
||||
|
||||
sf::Packet pac;
|
||||
pac << static_cast<MessageId>(NP_MSG_SYNC_SAVE_DATA);
|
||||
|
@ -1489,9 +1489,8 @@ bool NetPlayServer::SyncSaveData()
|
|||
pac << static_cast<u8>(0);
|
||||
}
|
||||
|
||||
SendChunkedToClients(
|
||||
std::move(pac), 1,
|
||||
StringFromFormat("GCI Folder %c Synchronization", is_slot_a ? 'A' : 'B'));
|
||||
SendChunkedToClients(std::move(pac), 1,
|
||||
fmt::format("GCI Folder {} Synchronization", is_slot_a ? 'A' : 'B'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue