forked from Mirrorlandia_minetest/minetest
Only create SoundManager in main menu if USE_SOUND is true
This commit is contained in:
parent
9397b5de08
commit
714ecc5e27
@ -1845,7 +1845,9 @@ int main(int argc, char *argv[])
|
||||
|
||||
MenuMusicFetcher soundfetcher;
|
||||
ISoundManager *sound = NULL;
|
||||
#if USE_SOUND
|
||||
sound = createOpenALSoundManager(&soundfetcher);
|
||||
#endif
|
||||
if(!sound)
|
||||
sound = &dummySoundManager;
|
||||
SimpleSoundSpec spec;
|
||||
|
Loading…
Reference in New Issue
Block a user