Skip to content

Commit 2672ac4

Browse files
committed
Dido parsing and conversion to v6
1 parent eb0f088 commit 2672ac4

File tree

6 files changed

+344
-79
lines changed

6 files changed

+344
-79
lines changed

Cargo.lock

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ hex = "0.4.3"
1717
modular-bitfield = "0.11.2"
1818
nom = "7.1.3"
1919
serde = { version = "1.0.204", features = ["derive"] }
20+
simple-error = "0.3.1"

src/buttons.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ fn parse_legacy_notation(thumb: String, finger: String) -> ButtonState {
143143
3 => button_state.f4l = true,
144144
_ => (),
145145
},
146-
'O' => match i {
146+
'M' => match i {
147147
0 => button_state.f1m = true,
148148
1 => button_state.f2m = true,
149149
2 => button_state.f3m = true,

0 commit comments

Comments
 (0)