From d0a7388581c7e03f6b40ad1a24ace73a821ae11c Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 19 Mar 2012 16:58:21 -0700 Subject: [PATCH] Remove ifdef checks for header inclusion in audio_player.cpp as the headers themselves have the checks --- aegisub/src/audio_player.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/aegisub/src/audio_player.cpp b/aegisub/src/audio_player.cpp index 7f9f8a4ad..f20157ff5 100644 --- a/aegisub/src/audio_player.cpp +++ b/aegisub/src/audio_player.cpp @@ -36,25 +36,13 @@ #include "config.h" -#ifdef WITH_ALSA #include "audio_player_alsa.h" -#endif -#ifdef WITH_DIRECTSOUND #include "audio_player_dsound.h" #include "audio_player_dsound2.h" -#endif -#ifdef WITH_OPENAL #include "audio_player_openal.h" -#endif -#ifdef WITH_OSS #include "audio_player_oss.h" -#endif -#ifdef WITH_PORTAUDIO #include "audio_player_portaudio.h" -#endif -#ifdef WITH_LIBPULSE #include "audio_player_pulse.h" -#endif #include "audio_controller.h" #include "compat.h"