mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-05 21:17:14 -05:00
Fix trash editor on gen3
now spawns the correct amount of numericupdowns
This commit is contained in:
parent
6d2c09f629
commit
471a90ced6
|
|
@ -69,7 +69,7 @@ private void addTrashEditing(int length)
|
|||
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 New Issue
Block a user