Fix scrolling through trainer stats

This commit is contained in:
Kurt
2015-12-23 07:57:41 -08:00
parent 1bb07b5998
commit 75c9799f7b

View File

@@ -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;