having a hard time with Sdl2 on mac. The code compiles well but at runtime, Mix_init failed with this error:
OGG Support Not Available
Strange thing as I installed sdl2_mixer like this:
brew install SDL2_mixer --with-libvobis
this is the code for initialization
int flags = MIX_INIT_OGG;
int initted = Mix_Init(flags);
if ((initted & flags) != flags)
{
printf("Mix_Init: Failed to init SDL_Mixer\n");
printf("Mix_Init: %s\n", Mix_GetError());
MSG_EXIT("Exiting ",1);
}
↧