From 96517f7afb435ea10da8da683a0143b0b1b1b904 Mon Sep 17 00:00:00 2001 From: Barinade Date: Thu, 13 Jun 2019 17:18:54 -0500 Subject: [PATCH] Fix DirectSound-sw registration as well & disable formatting it took us 9 months to find this --- src/arch/Sound/RageSoundDriver_DSound_Software.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/arch/Sound/RageSoundDriver_DSound_Software.cpp b/src/arch/Sound/RageSoundDriver_DSound_Software.cpp index 84ce843333..e515ed56ca 100644 --- a/src/arch/Sound/RageSoundDriver_DSound_Software.cpp +++ b/src/arch/Sound/RageSoundDriver_DSound_Software.cpp @@ -8,7 +8,9 @@ #include "Etterna/Singletons/PrefsManager.h" #include "archutils/Win32/ErrorStrings.h" -REGISTER_SOUND_DRIVER_CLASS2(DirectSound - sw, DSound_Software); +// clang-format off +REGISTER_SOUND_DRIVER_CLASS2(DirectSound-sw, DSound_Software); +// clang-format on static const int channels = 2; static const int bytes_per_frame = channels * 2; /* 16-bit */