From 5f65891698326970fce4213fc14b3173b8d478ed Mon Sep 17 00:00:00 2001 From: Zachary Lund Date: Thu, 18 Apr 2024 03:34:55 -0500 Subject: [PATCH] Remove bad comment --- src/main.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index abe274a..4611f95 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -107,11 +107,7 @@ std::string GenerateCDKey(uint64_t Seed, std::string_view Magic) } std::string Check = std::format("{}{}", *(int64_t*)&Seed, Magic); - - /* FIXME This is lazy and feels wrong but it's what the exe does essentially. - * I'm not sure if this part of the original algorithm... seems to work? */ MD5 Digest = DigestMD5((unsigned char*)Check.data(), Check.size()); - uint64_t QDigest = *(uint64_t*)Digest.data(); std::string CheckOutput = ValuesToCDKeyMap(ulltoa(QDigest, GCDKeyBase));