diff --git a/ShiftOS.WinForms/Applications/ShiftLetters.cs b/ShiftOS.WinForms/Applications/ShiftLetters.cs index 6e6a43e..19ee79e 100644 --- a/ShiftOS.WinForms/Applications/ShiftLetters.cs +++ b/ShiftOS.WinForms/Applications/ShiftLetters.cs @@ -118,9 +118,9 @@ namespace ShiftOS.WinForms.Applications lives = 0; lbllives.Visible = true; btnrestart.Visible = true; - int cp = word.Length * 2; - cp = cp * oldlives; + long cp = word.Length * oldlives; lbllives.Text = "You earned: " + cp + " codepoints!"; + ShiftOS.Engine.SaveSystem.CurrentSave.Codepoints += cp; } } }