mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-02 15:16:46 +00:00
BACKENDS: Mono output devices are OK on Symbian.
This commit is contained in:
parent
94ad45b058
commit
a8049f708b
@ -84,8 +84,12 @@ void SdlMixerManager::init() {
|
||||
if (_obtained.format != desired.format)
|
||||
warning("SDL mixer sound format: %d differs from desired: %d", _obtained.format, desired.format);
|
||||
|
||||
#ifndef __SYMBIAN32__
|
||||
// The SymbianSdlMixerManager does stereo->mono downmixing,
|
||||
// but otherwise we require stereo output.
|
||||
if (_obtained.channels != 2)
|
||||
error("SDL mixer output requires stereo output device");
|
||||
#endif
|
||||
|
||||
_mixer = new Audio::MixerImpl(g_system, _obtained.freq);
|
||||
assert(_mixer);
|
||||
|
Loading…
Reference in New Issue
Block a user