summaryrefslogtreecommitdiff
path: root/src/sound
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2019-04-07 12:02:04 +0200
committerglx22 <glx22@users.noreply.github.com>2020-06-05 19:36:05 +0200
commit4d04009d12932270da0e492b155cb2e699389c30 (patch)
treee29a7242195bb91a08fc0ca4bc82ecd399b700f0 /src/sound
parent4218ebc932950a8751146784ea5dad127bc27b10 (diff)
downloadopenttd-4d04009d12932270da0e492b155cb2e699389c30.tar.xz
Codechange: remove #ifdef from .cpp files to exclude features
With CMake, these files are simply not compiled to start with.
Diffstat (limited to 'src/sound')
-rw-r--r--src/sound/xaudio2_s.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/sound/xaudio2_s.cpp b/src/sound/xaudio2_s.cpp
index 5aa058040..e89e28a78 100644
--- a/src/sound/xaudio2_s.cpp
+++ b/src/sound/xaudio2_s.cpp
@@ -7,8 +7,6 @@
/** @file xaudio2_s.cpp XAudio2 sound driver. */
-#ifdef WITH_XAUDIO2
-
#include "../stdafx.h"
#include "../openttd.h"
#include "../driver.h"
@@ -267,5 +265,3 @@ void SoundDriver_XAudio2::Stop()
FreeLibrary(_xaudio_dll_handle);
CoUninitialize();
}
-
-#endif