Codechange: remove #ifdef from .cpp files to exclude features

With CMake, these files are simply not compiled to start with.
This commit is contained in:
Patric Stout
2019-04-07 12:02:04 +02:00
committed by glx22
parent 4218ebc932
commit 4d04009d12
4 changed files with 0 additions and 17 deletions

View File

@@ -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