From dc2d2342843d1da3af01f74c18e95a97659ba6db Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Wed, 27 Jan 2021 22:20:03 +0100 Subject: [PATCH] GCMemcardUtils: Fix typo in comment. --- Source/Core/Core/HW/GCMemcard/GCMemcardUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/GCMemcard/GCMemcardUtils.cpp b/Source/Core/Core/HW/GCMemcard/GCMemcardUtils.cpp index 67af234b89..4d32200ee4 100644 --- a/Source/Core/Core/HW/GCMemcard/GCMemcardUtils.cpp +++ b/Source/Core/Core/HW/GCMemcard/GCMemcardUtils.cpp @@ -52,7 +52,7 @@ bool HasSameIdentity(const DEntry& lhs, const DEntry& rhs) // With all that in mind, even if it mismatches the comparison behavior of the BIOS, we treat // m_filename as a nullterminated string for determining if two files identify as the same, as not - // doing so would cause more harm and confusion that good in practice. + // doing so would cause more harm and confusion than good in practice. if (lhs.m_gamecode != rhs.m_gamecode) return false;