misc: back to little endian because I am evil

This commit is contained in:
2025-06-17 19:51:16 +01:00
parent 0b16246dd2
commit 3a40719e54
4 changed files with 63 additions and 35 deletions
+1 -1
View File
@@ -17,6 +17,6 @@ fn main() {
.iter()
.map(|i| i.encode())
.for_each(|i| {
output_file.write_all(&i.to_be_bytes()).unwrap();
output_file.write_all(&i.to_le_bytes()).unwrap();
});
}