diff options
| author | Lioncash <mathew1800@gmail.com> | 2020-11-11 01:06:33 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2020-11-11 01:09:42 -0500 |
| commit | 689eec5304ebfcd27013717bb7c3924da570db80 (patch) | |
| tree | 38671c968f92b99cc1f0b7d18c46717e5d6dbdcb /Source/Core/DiscIO/DriveBlob.cpp | |
| parent | ae83685b0b4fd2d446738881c06e208e9a07166c (diff) | |
DiscIO: Make use of fmt-capable panic alerts
Migrates the DiscIO code over to fmt.
Diffstat (limited to 'Source/Core/DiscIO/DriveBlob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/DriveBlob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/DriveBlob.cpp b/Source/Core/DiscIO/DriveBlob.cpp index 5aab7b22f8..3a1ba4d275 100644 --- a/Source/Core/DiscIO/DriveBlob.cpp +++ b/Source/Core/DiscIO/DriveBlob.cpp @@ -146,7 +146,7 @@ bool DriveReader::ReadMultipleAlignedBlocks(u64 block_num, u64 num_blocks, u8* o !ReadFile(m_disc_handle, out_ptr, static_cast<DWORD>(GetSectorSize() * num_blocks), &bytes_read, nullptr)) { - PanicAlertT("Disc Read Error"); + PanicAlertFmtT("Disc Read Error"); return false; } return bytes_read == GetSectorSize() * num_blocks; |
