Skip to content
This repository has been archived by the owner on Feb 24, 2025. It is now read-only.

Commit

Permalink
Fixed Health value
Browse files Browse the repository at this point in the history
  • Loading branch information
alex193a committed Jan 25, 2016
1 parent 5abb4cd commit 071e19f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SOSSE/GeneralEditingForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public GeneralEditingForm()
hourNumericUpDown.Value = BitConverter.ToInt16(MainForm.SaveData, 0x20) + 6;
minuteNumericUpDown.Value = BitConverter.ToInt16(MainForm.SaveData, 0x22);
moneyTextBox.Text = BitConverter.ToUInt64(MainForm.SaveData, 0xA8).ToString();
healthNumericUpDown.Value = BitConverter.ToInt16(MainForm.SaveData, 0xAD);
healthNumericUpDown.Value = BitConverter.ToInt16(MainForm.SaveData, 0xB0);
staminaNumericUpDown.Value = BitConverter.ToInt16(MainForm.SaveData, 0xA4);
if (MainForm.SaveData[difficultyOffset] == 1)
seedlingRadioButton.Checked = true;
Expand Down

0 comments on commit 071e19f

Please sign in to comment.