May as well support 0xE8

This commit is contained in:
Gwilym Inzani 2024-08-28 16:48:28 +01:00
parent 9fa171b712
commit 5f76fcc316

View file

@ -404,6 +404,9 @@ pub fn parse_module(module: &Module) -> agb_tracker_interop::Track {
)
}
0x8 => PatternEffect::Panning(
Num::new(((slot.effect_parameter & 0xf) as i16) - 8) / 8,
),
0x9 => PatternEffect::Retrigger(slot.effect_parameter & 0xf),
0xA => PatternEffect::FineVolumeSlide(
Num::new((slot.effect_parameter & 0xf) as i16) / 128,