summaryrefslogtreecommitdiff
path: root/g_src/music_and_sound_g.h
blob: dc9acb07d230ec5ab4d004c8d4d55c2a4df8560f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MUSIC_AND_SOUND_G
#define MUSIC_AND_SOUND_G

// Fmodex works well enough on windows/os x, but on some linux distributions it fails badly
#if defined(linux)
#include "music_and_sound_openal.h"
#else
#include "music_and_sound_fmodex.h"
#endif // unix

extern musicsoundst musicsound;

#endif