README: explain further musl-specific tweaks
[rofl0r-df-libgraphics.git] / g_src / music_and_sound_g.h
blobdc9acb07d230ec5ab4d004c8d4d55c2a4df8560f
1 #ifndef MUSIC_AND_SOUND_G
2 #define MUSIC_AND_SOUND_G
4 // Fmodex works well enough on windows/os x, but on some linux distributions it fails badly
5 #if defined(linux)
6 #include "music_and_sound_openal.h"
7 #else
8 #include "music_and_sound_fmodex.h"
9 #endif // unix
11 extern musicsoundst musicsound;
13 #endif