summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorTellowKrinkle <tellowkrinkle@gmail.com>2022-07-21 20:10:10 -0500
committerTellowKrinkle <tellowkrinkle@gmail.com>2022-07-21 20:44:19 -0500
commit6559c6b8ee8d35694282f3dcfaf09f96f73874db (patch)
tree0ba3f6801c37c69e9a65315e2ec16dc268fa45f5 /Source/Core
parenta41345127f697515ceb65ed349032e9ed3abc7f9 (diff)
VideoBackends:Multiple: Grammar fixes
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoBackends/Metal/MTLRenderer.mm2
-rw-r--r--Source/Core/VideoBackends/Vulkan/VKRenderer.cpp2
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<int>& 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<int>& 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;