From b201ded8e86f788a2b9059cb0fccf7635963274c Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 30 Sep 2017 09:37:09 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20=E3=82=A8=20decapping=20to=20=E3=82=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both characters map back to character 0x83, but 0x83 previously mapped back to the lowercase variant which was unlike the others. (オ and ォ -> オ) Thanks Afepoke & smileynation! --- PKHeX.Core/PKM/StringConverter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/PKM/StringConverter.cs b/PKHeX.Core/PKM/StringConverter.cs index a67103b32..af2656dcf 100644 --- a/PKHeX.Core/PKM/StringConverter.cs +++ b/PKHeX.Core/PKM/StringConverter.cs @@ -729,7 +729,7 @@ private static byte SetG3Char(ushort chr, bool jp) {0x80, "ア"}, {0x81, "イ"}, {0x82, "ウ"}, - {0x83, "ェ"}, + {0x83, "エ"}, {0x84, "オ"}, {0x85, "カ"}, {0x86, "キ"},