LUS Cleanup: Only including the correct audio player header file.

pull/1033/head
Kenix3 10 months ago
parent fd379896d6
commit 4ce19e1448

@ -1,5 +1,14 @@
#pragma once
#include "stdint.h"
#ifndef _MSC_VER
#include "SDLAudioPlayer.h"
#endif
#ifdef _MSC_VER
#include "WasapiAudioPlayer.h"
#endif
#ifdef __APPLE__
#include "PulseAudioPlayer.h"
#endif
namespace Ship {
class AudioPlayer {

@ -12,8 +12,6 @@
#include "AudioPlayer.h"
#include "Hooks.h"
#include "UltraController.h"
#include "WasapiAudioPlayer.h"
#include "PulseAudioPlayer.h"
#include "Lib/Fast3D/gfx_pc.h"
#include "Lib/Fast3D/gfx_sdl.h"
#include "Lib/Fast3D/gfx_opengl.h"

Loading…
Cancel
Save