From 6559c6b8ee8d35694282f3dcfaf09f96f73874db Mon Sep 17 00:00:00 2001 From: TellowKrinkle Date: Thu, 21 Jul 2022 20:10:10 -0500 Subject: [PATCH] VideoBackends:Multiple: Grammar fixes --- Source/Core/VideoBackends/Metal/MTLRenderer.mm | 2 +- Source/Core/VideoBackends/Vulkan/VKRenderer.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoBackends/Metal/MTLRenderer.mm b/Source/Core/VideoBackends/Metal/MTLRenderer.mm index e8e033c8aa..3639b01241 100644 --- a/Source/Core/VideoBackends/Metal/MTLRenderer.mm +++ b/Source/Core/VideoBackends/Metal/MTLRenderer.mm @@ -301,7 +301,7 @@ void Metal::Renderer::ClearScreen(const MathUtil::Rectangle& rc, bool color bpmem.zcontrol.pixel_format == PixelFormat::RGB8_Z24 || bpmem.zcontrol.pixel_format == PixelFormat::Z24) { - // Force alpha writes, and clear the alpha channel. This is different to the other backends, + // Force alpha writes, and clear the alpha channel. This is different from the other backends, // where the existing values of the alpha channel are preserved. alpha_enable = true; color &= 0x00FFFFFF; diff --git a/Source/Core/VideoBackends/Vulkan/VKRenderer.cpp b/Source/Core/VideoBackends/Vulkan/VKRenderer.cpp index 36fa325ae7..23dba4613b 100644 --- a/Source/Core/VideoBackends/Vulkan/VKRenderer.cpp +++ b/Source/Core/VideoBackends/Vulkan/VKRenderer.cpp @@ -155,7 +155,7 @@ void Renderer::ClearScreen(const MathUtil::Rectangle& rc, bool color_enable bpmem.zcontrol.pixel_format == PixelFormat::RGB8_Z24 || bpmem.zcontrol.pixel_format == PixelFormat::Z24) { - // Force alpha writes, and clear the alpha channel. This is different to the other backends, + // Force alpha writes, and clear the alpha channel. This is different from the other backends, // where the existing values of the alpha channel are preserved. alpha_enable = true; color &= 0x00FFFFFF;