summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/NANDImporter.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-11-11 01:06:33 -0500
committerLioncash <mathew1800@gmail.com>2020-11-11 01:09:42 -0500
commit689eec5304ebfcd27013717bb7c3924da570db80 (patch)
tree38671c968f92b99cc1f0b7d18c46717e5d6dbdcb /Source/Core/DiscIO/NANDImporter.cpp
parentae83685b0b4fd2d446738881c06e208e9a07166c (diff)
DiscIO: Make use of fmt-capable panic alerts
Migrates the DiscIO code over to fmt.
Diffstat (limited to 'Source/Core/DiscIO/NANDImporter.cpp')
-rw-r--r--Source/Core/DiscIO/NANDImporter.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/DiscIO/NANDImporter.cpp b/Source/Core/DiscIO/NANDImporter.cpp
index 5bd651be2e..d67bbf047d 100644
--- a/Source/Core/DiscIO/NANDImporter.cpp
+++ b/Source/Core/DiscIO/NANDImporter.cpp
@@ -6,7 +6,6 @@
#include <algorithm>
#include <array>
-#include <cinttypes>
#include <cstring>
#include <fmt/format.h>
@@ -60,7 +59,7 @@ bool NANDImporter::ReadNANDBin(const std::string& path_to_bin,
const u64 image_size = file.GetSize();
if (image_size != NAND_BIN_SIZE + NAND_KEYS_SIZE && image_size != NAND_BIN_SIZE)
{
- PanicAlertT("This file does not look like a BootMii NAND backup.");
+ PanicAlertFmtT("This file does not look like a BootMii NAND backup.");
return false;
}
@@ -273,6 +272,6 @@ void NANDImporter::ExportKeys(const std::string& nand_root)
const std::string file_path = nand_root + "/keys.bin";
File::IOFile file(file_path, "wb");
if (!file.WriteBytes(m_nand_keys.data(), NAND_KEYS_SIZE))
- PanicAlertT("Unable to write to file %s", file_path.c_str());
+ PanicAlertFmtT("Unable to write to file {}", file_path);
}
} // namespace DiscIO