Sfoglia il codice sorgente

qnx: Removed unnecessary check for available audio devices.

Philipp Wiesemann 8 anni fa
parent
commit
7c5078d8bd
1 ha cambiato i file con 0 aggiunte e 8 eliminazioni
  1. 0 8
      src/audio/qsa/SDL_qsa_audio.c

+ 0 - 8
src/audio/qsa/SDL_qsa_audio.c

@@ -722,7 +722,6 @@ static int
 QSA_Init(SDL_AudioDriverImpl * impl)
 {
     snd_pcm_t *handle = NULL;
-    int32_t status = 0;
 
     /* Clear devices array */
     SDL_zero(qsa_playback_device);
@@ -751,13 +750,6 @@ QSA_Init(SDL_AudioDriverImpl * impl)
     impl->OnlyHasDefaultOutputDevice = 0;
     impl->OnlyHasDefaultCaptureDevice = 0;
 
-    /* Check if io-audio manager is running or not */
-    status = snd_cards();
-    if (status == 0) {
-        /* if no, return immediately */
-        return 1;
-    }
-
     return 1;   /* this audio target is available. */
 }