diff --git a/src/video_core/renderer_vulkan/liverpool_to_vk.h b/src/video_core/renderer_vulkan/liverpool_to_vk.h index dae6eb31370..58ea9115da9 100644 --- a/src/video_core/renderer_vulkan/liverpool_to_vk.h +++ b/src/video_core/renderer_vulkan/liverpool_to_vk.h @@ -80,6 +80,8 @@ static inline vk::Format PromoteFormatToDepth(vk::Format fmt) { return vk::Format::eR32Uint; } else if (fmt == vk::Format::eR8G8B8A8Srgb) { return vk::Format::eR32Uint; + } else { + LOG_ERROR(Render_Vulkan, "Unexpected Depth Format {}", vk::to_string(fmt)); } UNREACHABLE(); }