fix hori slider output order

pull/13/head
4yn 2022-07-29 19:46:34 +08:00
parent f135c31904
commit b02e14ecdf
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ impl OutputHandler for HoriOutput {
.fold(0, |axis, (idx, state)| { .fold(0, |axis, (idx, state)| {
axis axis
| match state { | match state {
true => 0b11 << ((15 - idx) * 2), true => 0b11 << ((idx ^ 3) * 2),
false => 0, false => 0,
} }
}) })