- audio_oss_esd.cpp (open_esd): even return false if !ENABLE_ESD and shut

up the compiler by the way
This commit is contained in:
gbeauche 2001-07-15 05:40:12 +00:00
parent 08cbd41f78
commit 3e27acb9d4

View File

@ -231,6 +231,9 @@ static bool open_esd(void)
// Sound buffer size = 4096 frames
audio_frames_per_block = 4096;
return true;
#else
// ESD is not enabled, shut up the compiler
return false;
#endif
}