From b41fb851c62d90152738520b15fd88b2993c640f Mon Sep 17 00:00:00 2001 From: Triang3l Date: Tue, 15 Feb 2022 23:05:04 +0300 Subject: [PATCH] [Vulkan] Unsupported pipeline features assertion typo fix --- src/xenia/gpu/vulkan/vulkan_pipeline_cache.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/gpu/vulkan/vulkan_pipeline_cache.cc b/src/xenia/gpu/vulkan/vulkan_pipeline_cache.cc index 2e3c32d8c..2674396d1 100644 --- a/src/xenia/gpu/vulkan/vulkan_pipeline_cache.cc +++ b/src/xenia/gpu/vulkan/vulkan_pipeline_cache.cc @@ -662,7 +662,7 @@ bool VulkanPipelineCache::EnsurePipelineCreated( assert_always( "When creating a new pipeline, the description must not require " "unsupported features, and when loading the pipeline storage, " - "unsupported supported must be filtered out"); + "pipelines with unsupported features must be filtered out"); return false; }