From 5f76fcc3168c70bca8379d03042f6a8d9f553663 Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Wed, 28 Aug 2024 16:48:28 +0100 Subject: [PATCH] May as well support 0xE8 --- tracker/agb-xm-core/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tracker/agb-xm-core/src/lib.rs b/tracker/agb-xm-core/src/lib.rs index 74c838a0..c52a290b 100644 --- a/tracker/agb-xm-core/src/lib.rs +++ b/tracker/agb-xm-core/src/lib.rs @@ -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,