From ea722bd7c27aa7eb7da2e7ef798367c7fa86c8fe Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 4 May 2025 17:15:59 -0400 Subject: [PATCH] Fix wrong format string in sprintf call --- launcher/src/encryptedarg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/encryptedarg.cpp b/launcher/src/encryptedarg.cpp index 0e3a43d..ee317f0 100644 --- a/launcher/src/encryptedarg.cpp +++ b/launcher/src/encryptedarg.cpp @@ -139,7 +139,7 @@ std::pair encryptSteamTicket(QString ticket, qint64 time) binaryWriter.append(garbage); char blowfishKey[17]{}; - sprintf(blowfishKey, "%08x#un@e=x>", time); + sprintf(blowfishKey, "%08llx#un@e=x>", time); binaryWriter.remove(0, 4); binaryWriter.insert(0, reinterpret_cast(&badSum), sizeof(uint));