ALL: Remove Symbian port

This commit is contained in:
Eugene Sandulenko 2022-05-28 12:31:02 +02:00
parent b5ba97f252
commit 5e05f93f36
No known key found for this signature in database
GPG key ID: 014D387312D34F08
122 changed files with 20 additions and 9304 deletions

View file

@ -103,12 +103,8 @@ void SdlMixerManager::init() {
if (_obtained.samples != desired.samples)
warning("SDL mixer output buffer size: %d differs from desired: %d", _obtained.samples, desired.samples);
#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(_obtained.freq, desired.samples);
assert(_mixer);