Skip to content

Commit

Permalink
Fix scrolling through trainer stats
Browse files Browse the repository at this point in the history
  • Loading branch information
kwsch committed Dec 23, 2015
1 parent 1bb07b5 commit 75c9799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SAV/SAV_Trainer.cs
Expand Up @@ -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;
Expand Down

0 comments on commit 75c9799

Please sign in to comment.