From 9cae5a6bcc14e707b572269c778b23e7e04e5392 Mon Sep 17 00:00:00 2001 From: Persephone Bubblegum-Holiday Date: Wed, 23 Apr 2025 20:42:25 -0700 Subject: [PATCH] fix bit order --- mitzifier/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitzifier/Program.cs b/mitzifier/Program.cs index 0cf2141..9f63230 100644 --- a/mitzifier/Program.cs +++ b/mitzifier/Program.cs @@ -77,6 +77,6 @@ namespace mitzifier Console.WriteLine("Highest frame byte was " + hfb.ToString("B32")); } - public static int[] targetBits = { 168, 169, 170, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188 }; + public static int[] targetBits = { 185, 176, 177, 181, 182, 183, 184, 179, 178, 180, 173, 168, 169, 174, 175, 170, 187, 186, 188, }; } }