Skip to content

Commit

Permalink
Merge pull request #5336 from JosJuice/memcard-shiftjis
Browse files Browse the repository at this point in the history
Fix display of Japanese text in the Memory Card Manager
  • Loading branch information
lioncash committed Apr 30, 2017
2 parents d5534e0 + d2b20f3 commit 344767a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/HW/GCMemcard/GCMemcard.cpp
Expand Up @@ -232,7 +232,7 @@ void GCMemcard::InitDirBatPointers()

bool GCMemcard::IsShiftJIS() const
{
return hdr.Encoding == 1;
return hdr.Encoding != 0;
}

bool GCMemcard::Save()
Expand Down

0 comments on commit 344767a

Please sign in to comment.