When I call Mix_Init() with several flags I get an error message telling me that mixer doesn't have the support for them. For instance, Mix_Init(MIX_INIT_MP3) sets the error string Mixer not built with MP3 support. This issue is similar to https://github.com/devkitPro/pacman-packages/issues/287, but at least MP3 and MOD should have support according to this.
Flags needed for compilation are MP3_MUSIC and MOD_MUSIC (see here).
When I call
Mix_Init()
with several flags I get an error message telling me that mixer doesn't have the support for them. For instance,Mix_Init(MIX_INIT_MP3)
sets the error stringMixer not built with MP3 support
. This issue is similar to https://github.com/devkitPro/pacman-packages/issues/287, but at least MP3 and MOD should have support according to this. Flags needed for compilation are MP3_MUSIC and MOD_MUSIC (see here).