mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-11 15:07:11 +00:00
Fix trash editor on gen3
now spawns the correct amount of numericupdowns
This commit is contained in:
parent
6d2c09f629
commit
471a90ced6
1 changed files with 1 additions and 1 deletions
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue