mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Core: Convert missed log calls over to fmt
This commit is contained in:
parent
17b11cf4a4
commit
eedfe2abf1
6 changed files with 35 additions and 33 deletions
|
@ -470,8 +470,9 @@ void DecryptARCode(std::vector<std::string> vCodes, std::vector<AREntry>* ops)
|
|||
if (ret)
|
||||
{
|
||||
// Return value is index + 1, 0 being the success flag value.
|
||||
PanicAlertT("Action Replay Code Decryption Error:\nParity Check Failed\n\nCulprit Code:\n%s",
|
||||
vCodes[ret - 1].c_str());
|
||||
PanicAlertFmtT(
|
||||
"Action Replay Code Decryption Error:\nParity Check Failed\n\nCulprit Code:\n{0}",
|
||||
vCodes[ret - 1]);
|
||||
}
|
||||
else if (!batchdecrypt(uCodes.data(), (u16)vCodes.size() << 1))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue