From 54ade5af2dd69194f567a27ef885d27667f82f0c Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Tue, 14 Nov 2023 20:24:44 +0000 Subject: [PATCH] Add a note about midi support being experimental --- tracker/agb-tracker/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tracker/agb-tracker/src/lib.rs b/tracker/agb-tracker/src/lib.rs index 406d9c48..27edc0b5 100644 --- a/tracker/agb-tracker/src/lib.rs +++ b/tracker/agb-tracker/src/lib.rs @@ -78,6 +78,9 @@ use agb::{ pub use agb_xm::include_xm; /// Import a midi file. Only available if you have the `midi` feature enabled (enabled by default). +/// This is currently experimental, and many types of MIDI file or MIDI features are not supported. +/// +/// Takes 2 arguments, an SF2 file and a midi file. #[cfg(feature = "midi")] pub use agb_midi::include_midi;