summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeWii.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/VolumeWii.cpp
parentae83685b0b4fd2d446738881c06e208e9a07166c (diff)
DiscIO: Make use of fmt-capable panic alerts
Migrates the DiscIO code over to fmt.
Diffstat (limited to 'Source/Core/DiscIO/VolumeWii.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeWii.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeWii.cpp b/Source/Core/DiscIO/VolumeWii.cpp
index 9acaa9520b..bad4509b5c 100644
--- a/Source/Core/DiscIO/VolumeWii.cpp
+++ b/Source/Core/DiscIO/VolumeWii.cpp
@@ -92,7 +92,7 @@ VolumeWii::VolumeWii(std::unique_ptr<BlobReader> reader)
{
// This check is normally done by ES in ES_DiVerify, but that would happen too late
// (after allocating the buffer), so we do the check here.
- PanicAlert("Invalid TMD size");
+ PanicAlertFmt("Invalid TMD size");
return INVALID_TMD;
}
std::vector<u8> tmd_buffer(*tmd_size);