summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/WaveFile.cpp
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2024-08-07 03:27:23 +0100
committerGitHub <noreply@github.com>2024-08-07 03:27:23 +0100
commit56e7e37d4fd3aa16944b6ecf09fb574529ff2ac0 (patch)
treed69ec643b858ce54e46de5f3e59ad7fcea4d8c3c /Source/Core/AudioCommon/WaveFile.cpp
parent513405b0aeadcf582e9d3430b742813cf509382d (diff)
parentd627b78c46ef752211a0aa7f259cd9f7e2415985 (diff)
Merge pull request #12957 from Dentomologist/adjust_include_order_and_spacing
Adjust order and spacing of various #includes
Diffstat (limited to 'Source/Core/AudioCommon/WaveFile.cpp')
-rw-r--r--Source/Core/AudioCommon/WaveFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/WaveFile.cpp b/Source/Core/AudioCommon/WaveFile.cpp
index b2345aca59..3c74bd0cc4 100644
--- a/Source/Core/AudioCommon/WaveFile.cpp
+++ b/Source/Core/AudioCommon/WaveFile.cpp
@@ -2,12 +2,12 @@
// SPDX-License-Identifier: GPL-2.0-or-later
#include "AudioCommon/WaveFile.h"
-#include "AudioCommon/Mixer.h"
#include <string>
#include <fmt/format.h>
+#include "AudioCommon/Mixer.h"
#include "Common/CommonTypes.h"
#include "Common/FileUtil.h"
#include "Common/IOFile.h"