From a09131000810c162e2a0f4265524af43a35d0937 Mon Sep 17 00:00:00 2001 From: sigsegv7 Date: Sun, 17 Sep 2023 20:07:32 -0400 Subject: Remove problematic line within flip_block() macro This line caused some corruption at the end of the file. When deobfuscating, you'd notice the last bytes being corrupted or missing. Signed-off-by: sigsegv7 --- main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/main.c b/main.c index ce6e21f..0a3c757 100644 --- a/main.c +++ b/main.c @@ -35,7 +35,6 @@ #define flip_block(TMP_VAR, TYPE, BUF, POS) \ TMP_VAR = *(TYPE *)&BUF[POS]; \ - TMP_VAR &= ~mask(step*8); \ TMP_VAR = ~TMP_VAR; \ *(TYPE *)&BUF[POS] = TMP_VAR; \ -- cgit v1.2.3