Bugzilla – Bug 98983
gl-117 doesn't work in Preview 3
Last modified: 2007-06-22 15:22:33 UTC
New installation of Preview 3, nothing fancy, standard KDE package selection + additional ones (like Experienced user, etc.). Starting gl-117 gives: Info: Found gl-117 data directory /usr/share/games/gl-117 [...] Info: Using SDL_mixer Fatal: Cannot open winner.s3m: Unrecognized music format Seems to be a screamtracker III file.
# configure [...] checking for Mix_LoadMUS in -lSDL_mixer... yes [...] src/audio.cpp [...] music1 = Mix_LoadMUS (dirs->getMusic ("winner.s3m")); if (music1 == NULL) { sprintf (buf, "Cannot open winner.s3m: %s", Mix_GetError ()); display (buf, LOG_FATAL); exit (EXIT_LOADFILE); } Maybe there's sth. broken in new SDL_mixer version 1.2.6?
Indeed. After downgrading to SDL_mixer 1.2.5 of 9.3 playing the s3m files work again.
SDL_mixer can now use external libmikmod. I added it to nfb. (Internal mikmod library in SDL_mixer was misdetected for some reason.)
Wow! Thanks!