From 471a90ced622b46fdffc19ae469e385aade745f3 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 9 Apr 2017 19:50:53 -0700 Subject: [PATCH] Fix trash editor on gen3 now spawns the correct amount of numericupdowns --- PKHeX.WinForms/Subforms/PKM Editors/Text.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++) {