mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Print the actual effect character
This commit is contained in:
parent
040d3d5604
commit
ea792f4768
|
@ -439,7 +439,10 @@ pub fn parse_module(module: &Module) -> agb_tracker_interop::Track {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
e => {
|
e => {
|
||||||
eprintln!("Unsupported effect {e:X}xy");
|
let effect_char = char::from_digit(e as u32, 36)
|
||||||
|
.unwrap_or('?')
|
||||||
|
.to_ascii_uppercase();
|
||||||
|
eprintln!("Unsupported effect {effect_char}xy");
|
||||||
|
|
||||||
PatternEffect::None
|
PatternEffect::None
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue