GCMemcardUtils: Fix typo in comment.

This commit is contained in:
Admiral H. Curtiss 2021-01-27 22:20:03 +01:00
parent e47eb16641
commit dc2d234284
1 changed files with 1 additions and 1 deletions

View File

@ -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 // 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 // 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) if (lhs.m_gamecode != rhs.m_gamecode)
return false; return false;