From efb6cdd30d462be35dcf98b8a8d2c3976ba772f3 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Tue, 19 Nov 2024 02:12:20 +0200 Subject: [PATCH] Run clang-format --- include/audio/hle_core.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/audio/hle_core.hpp b/include/audio/hle_core.hpp index eed7bcc1..5868a5d0 100644 --- a/include/audio/hle_core.hpp +++ b/include/audio/hle_core.hpp @@ -48,7 +48,7 @@ namespace Audio { using SampleBuffer = std::deque>; using BufferQueue = std::priority_queue; using InterpolationMode = HLE::SourceConfiguration::Configuration::InterpolationMode; - using InterpolationState = Audio::Interpolation::State; + using InterpolationState = Audio::Interpolation::State; DSPMixer::StereoFrame currentFrame; BufferQueue buffers; @@ -56,7 +56,7 @@ namespace Audio { SampleFormat sampleFormat = SampleFormat::ADPCM; SourceType sourceType = SourceType::Stereo; InterpolationMode interpolationMode = InterpolationMode::Linear; - InterpolationState interpolationState; + InterpolationState interpolationState; // There's one gain configuration for each of the 3 intermediate mixing stages // And each gain configuration is composed of 4 gain values, one for each sample in a quad-channel sample @@ -221,5 +221,4 @@ namespace Audio { void setSemaphore(u16 value) override {} void setSemaphoreMask(u16 value) override {} }; - } // namespace Audio