mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-22 09:22:18 -05:00
LUS Cleanup: Only including the correct audio player header file.
This commit is contained in:
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…
Reference in New Issue
Block a user