Core: Convert missed log calls over to fmt

This commit is contained in:
Lioncash 2020-11-23 11:55:49 -05:00
commit eedfe2abf1
6 changed files with 35 additions and 33 deletions

View file

@ -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))
{