From ee1289c5b22faa0d784d3fefc612a504f70180f3 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 5 Oct 2020 12:04:13 +0200 Subject: [PATCH] Mark tables as not-to-be-formatted --- backends/mixer_oss.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backends/mixer_oss.cpp b/backends/mixer_oss.cpp index 9e5641ab..3f2d1dbf 100644 --- a/backends/mixer_oss.cpp +++ b/backends/mixer_oss.cpp @@ -54,6 +54,7 @@ */ #define MAX_MIXDEVS 32 +// clang-format off const char* MixerDevNames[32]={ I18N_NOOP("Volume"), I18N_NOOP("Bass"), I18N_NOOP("Treble"), I18N_NOOP("Synth"), I18N_NOOP("Pcm"), I18N_NOOP("Speaker"), @@ -79,6 +80,7 @@ const MixDevice::ChannelType MixerChannelTypes[32] = { MixDevice::EXTERNAL, MixDevice::VOLUME, MixDevice::VOLUME, MixDevice::UNKNOWN, MixDevice::UNKNOWN, MixDevice::UNKNOWN, MixDevice::UNKNOWN, MixDevice::UNKNOWN }; +// clang-format on Mixer_Backend* OSS_getMixer( Mixer* mixer, int device ) { -- GitLab