Skip to content

Commit 3a8e325

Browse files
don't add leading zeroes to the steam id
I have no idea why I left it like that
1 parent bc2ab74 commit 3a8e325

File tree

1 file changed

+2
-2
lines changed
  • DMFDSteamSaveTool/DMFDSteamSaveTool

1 file changed

+2
-2
lines changed

DMFDSteamSaveTool/DMFDSteamSaveTool/Form1.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ private void encrypt_button_Click(object sender, EventArgs e)
190190
if (steamID64_dec.Text.Length > 0)
191191
{
192192
ulong steamID = ulong.Parse(steamID64_dec.Text) & 0xFFFFFFFF;
193-
dmfd.Encrypt(halfPassword1 + steamID.ToString("x" + 8), ref saveData);
194-
dmfd.Encrypt(halfPassword0 + steamID.ToString("x" + 8), ref saveData);
193+
dmfd.Encrypt(halfPassword1 + steamID.ToString("x"), ref saveData);
194+
dmfd.Encrypt(halfPassword0 + steamID.ToString("x"), ref saveData);
195195
}
196196
// encrypt for NS (PS4 too?)
197197
else

0 commit comments

Comments
 (0)