mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-23 11:45:04 -05:00
Fix scrolling through trainer stats
This commit is contained in:
@@ -579,7 +579,7 @@ private void changeFFFF(object sender, EventArgs e)
|
||||
private void changeStat(object sender, EventArgs e)
|
||||
{
|
||||
editing = true;
|
||||
int offset = Convert.ToInt32(statdata[CB_Stats.SelectedIndex * 2].Substring(2));
|
||||
int offset = Convert.ToInt32(statdata[CB_Stats.SelectedIndex * 2].Substring(2), 16);
|
||||
MT_Stat.Text = SAV.getPSSStat(offset/4).ToString();
|
||||
L_Offset.Text = "0x" + offset.ToString("X3");
|
||||
editing = false;
|
||||
|
||||
Reference in New Issue
Block a user