removed 'unused' code from decrypter

dear god, I hate you from the bottom of my heart, but, please do not break my code by removing this code. i have no fucking idea what it does and how it got there. if you'll protect my code stability, I will do absolutely nothing. hail satan
This commit is contained in:
Václav Šmejkal 2024-11-17 21:18:28 +01:00
parent ca81c49fdc
commit a7523a64a2
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -78,12 +78,6 @@ why2_output_flags why2_decrypt_text(char *text, char *key_new)
//GET ENCRYPTED NUMBERS
for (unsigned short i = 0; i < why2_byte_format_length(text_copy); i++)
{
for (unsigned short j = 2 + (i * 2); j <= 3 + (i * 2); j++)
{
//ENSURE THERE IS NO \0 (REVERSED)
if (text_copy[j] == -128) text_copy[j] = 0;
}
//PUT TOGETHER
encrypted_input[i] = (text_copy[3 + (i * 2)] << 7) | text_copy[2 + (i * 2)];