Browse Source

Give more priority to PulseAudio api (#129)

tags/5.1.0
Marcelo Fernandez Stephen Sinclair 7 years ago
parent
commit
34376d36aa
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      RtAudio.cpp

+ 3
- 3
RtAudio.cpp View File

@@ -107,12 +107,12 @@ void RtAudio :: getCompiledApi( std::vector<RtAudio::Api> &apis )
#if defined(__UNIX_JACK__)
apis.push_back( UNIX_JACK );
#endif
#if defined(__LINUX_ALSA__)
apis.push_back( LINUX_ALSA );
#endif
#if defined(__LINUX_PULSE__)
apis.push_back( LINUX_PULSE );
#endif
#if defined(__LINUX_ALSA__)
apis.push_back( LINUX_ALSA );
#endif
#if defined(__LINUX_OSS__)
apis.push_back( LINUX_OSS );
#endif


Loading…
Cancel
Save