Remove unused option.

This commit is contained in:
Tortuga Veloz 2026-02-11 01:23:13 +01:00
parent ee2f143f3d
commit bae83bd11d
2 changed files with 0 additions and 4 deletions

View file

@ -3,7 +3,6 @@
typedef enum AudioChannelsSetting {
audioStereo,
audioMatrix51,
audioRaw51,
audioMax
} AudioChannelsSetting;
@ -13,8 +12,6 @@ inline const char* AudioChannelsSettingName(AudioChannelsSetting setting) {
return "Stereo";
case audioMatrix51:
return "5.1 Matrix";
case audioRaw51:
return "5.1 Raw";
default:
return "Unknown";
}

View file

@ -359,7 +359,6 @@ void reset_audio(uint32_t output_freq) {
// Set output channels based on audio channel setting
switch (audio_channel_setting) {
case audioMatrix51:
case audioRaw51:
output_channels = 6;
break;
case audioStereo: