Commit ef0c348 1 parent d42849d commit ef0c348 Copy full SHA for ef0c348
File tree 3 files changed +1
-9
lines changed
3 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -465,11 +465,6 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
465
465
target_link_libraries (libultraship PRIVATE ${OSX_FOUNDATION} ${OSX_AVFOUNDATION} ${METAL} ${QUARTZCORE} ${CMAKE_DL_LIBS} )
466
466
endif ()
467
467
468
- if (CMAKE_SYSTEM_NAME STREQUAL "Linux" )
469
- find_package (PulseAudio)
470
- target_link_libraries (libultraship PRIVATE ${PULSEAUDIO_LIBRARY} )
471
- endif ()
472
-
473
468
if (USE_OPENGLES)
474
469
if (CMAKE_SYSTEM_NAME STREQUAL "Android" )
475
470
find_library (OPENGLES_LIBRARY GLESv3)
Original file line number Diff line number Diff line change @@ -36,9 +36,6 @@ void Audio::Init() {
36
36
mAvailableAudioBackends = std::make_shared<std::vector<AudioBackend>>();
37
37
#ifdef _WIN32
38
38
mAvailableAudioBackends ->push_back (AudioBackend::WASAPI);
39
- #endif
40
- #ifdef __linux
41
- mAvailableAudioBackends ->push_back (AudioBackend::PULSE);
42
39
#endif
43
40
mAvailableAudioBackends ->push_back (AudioBackend::SDL);
44
41
Original file line number Diff line number Diff line change 6
6
#include " audio/AudioPlayer.h"
7
7
8
8
namespace LUS {
9
- enum class AudioBackend { WASAPI, PULSE, SDL };
9
+ enum class AudioBackend { WASAPI, SDL };
10
10
11
11
class Audio {
12
12
public:
You can’t perform that action at this time.
0 commit comments