diff options
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/StreamBuffer.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Vulkan/StreamBuffer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/StreamBuffer.cpp b/Source/Core/VideoBackends/Vulkan/StreamBuffer.cpp index 9582093c89..ee86615090 100644 --- a/Source/Core/VideoBackends/Vulkan/StreamBuffer.cpp +++ b/Source/Core/VideoBackends/Vulkan/StreamBuffer.cpp @@ -136,8 +136,8 @@ bool StreamBuffer::ReserveMemory(u32 num_bytes, u32 alignment) // Check for sane allocations if (required_bytes > m_size) { - PanicAlert("Attempting to allocate %u bytes from a %u byte stream buffer", - static_cast<uint32_t>(num_bytes), static_cast<uint32_t>(m_size)); + PanicAlertFmt("Attempting to allocate {} bytes from a {} byte stream buffer", num_bytes, + m_size); return false; } |
