diff --git a/PKHeX.WinForms/Subforms/PKM Editors/Text.cs b/PKHeX.WinForms/Subforms/PKM Editors/Text.cs index f12f15248..7a1ab721d 100644 --- a/PKHeX.WinForms/Subforms/PKM Editors/Text.cs +++ b/PKHeX.WinForms/Subforms/PKM Editors/Text.cs @@ -69,7 +69,7 @@ namespace PKHeX.WinForms GB_Trash.Visible = true; NUD_Generation.Value = Main.SAV.Generation; int charct = length; - int bytesperchar = Main.SAV.Generation > 2 ? 2 : 1; + int bytesperchar = bigendian || Main.SAV.Generation > 3 ? 2 : 1; Font courier = new Font("Courier New", 8); for (int i = 0; i < charct * bytesperchar; i++) {