From 2a69d1db4d13e9009c6ae562e491be4a0e0668af Mon Sep 17 00:00:00 2001 From: Triang3l Date: Thu, 14 Jul 2022 21:16:23 +0300 Subject: [PATCH] [Vulkan] Fix a typo in a comment about BC textures [ci skip] --- src/xenia/gpu/vulkan/vulkan_texture_cache.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/gpu/vulkan/vulkan_texture_cache.cc b/src/xenia/gpu/vulkan/vulkan_texture_cache.cc index 580696a30..c9844222b 100644 --- a/src/xenia/gpu/vulkan/vulkan_texture_cache.cc +++ b/src/xenia/gpu/vulkan/vulkan_texture_cache.cc @@ -1796,8 +1796,8 @@ bool VulkanTextureCache::Initialize() { // S3TC. // Not checking the textureCompressionBC feature because its availability // means that all BC formats are supported, however, the device may expose - // some BC formats without this feature. Xenia doesn't BC6H and BC7 at all, - // and has fallbacks for each used format. + // some BC formats without this feature. Xenia doesn't use BC6H and BC7 at + // all, and has fallbacks for each used format. // TODO(Triang3l): Raise the host texture memory usage limit if S3TC has to be // decompressed. // TODO(Triang3l): S3TC -> 5551 or 4444 as an option.