Skip to content

Commit

Permalink
Style fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLorenz committed Oct 1, 2023
1 parent 911affd commit 8505fb4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/core/audio/AudioJack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,15 @@ namespace lmms


AudioJack::AudioJack(bool& successful, AudioEngine* audioEngineParam)
: AudioDevice(std::clamp<int>(
ConfigManager::inst()->value("audiojack", "channels").toInt(),
DEFAULT_CHANNELS,
SURROUND_CHANNELS), audioEngineParam)
: AudioDevice(
// clang-format off
std::clamp<int>(
ConfigManager::inst()->value("audiojack", "channels").toInt(),
DEFAULT_CHANNELS,
SURROUND_CHANNELS
),
// clang-format on
audioEngineParam)
, m_client(nullptr)
, m_active(false)
, m_midiClient(nullptr)
Expand Down

0 comments on commit 8505fb4

Please sign in to comment.