From 139d4fc76e4ddf45179ca5ec5e42c52ef513ea4d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 2 Dec 2020 13:17:27 -0500 Subject: General: Convert PanicAlerts over to fmt equivalent Converts lingering panic alert calls over to the fmt-capable ones. --- Source/Core/VideoBackends/Vulkan/VulkanContext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoBackends/Vulkan/VulkanContext.cpp') diff --git a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp index e9e1f41328..ae1905bcb3 100644 --- a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp +++ b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp @@ -779,7 +779,7 @@ u32 VulkanContext::GetUploadMemoryType(u32 bits, bool* is_coherent) return type_index.value(); // Shouldn't happen, there should be at least one host-visible heap. - PanicAlert("Unable to get memory type for upload."); + PanicAlertFmt("Unable to get memory type for upload."); return 0; } @@ -821,7 +821,7 @@ u32 VulkanContext::GetReadbackMemoryType(u32 bits, bool* is_coherent) return type_index.value(); // We should have at least one host visible memory type... - PanicAlert("Unable to get memory type for upload."); + PanicAlertFmt("Unable to get memory type for upload."); return 0; } -- cgit v1.2.3