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

This commit is contained in:
Kenix3 2022-08-03 20:04:29 -04:00
parent fd379896d6
commit 4ce19e1448
2 changed files with 9 additions and 2 deletions

View File

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

View File

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