fix bit order

This commit is contained in:
Persephone Bubblegum-Holidy 2025-04-23 20:42:25 -07:00
parent b044fce1c6
commit 9cae5a6bcc

View file

@ -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, };
}
}