Mercurial > sdl-ios-xcode
diff src/audio/alsa/SDL_alsa_audio.c @ 3699:4160ba33b597
Removed test for "driver is valid, but doesn't see any audio devices."
It was causing problems, and it really doesn't make sense to do it that way.
Fixes Bugzilla #834.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Tue, 26 Jan 2010 06:01:33 +0000 |
parents | f7b03b6838cb |
children | 9bc9ff36eb8f |
line wrap: on
line diff
--- a/src/audio/alsa/SDL_alsa_audio.c Sun Jan 24 21:13:33 2010 +0000 +++ b/src/audio/alsa/SDL_alsa_audio.c Tue Jan 26 06:01:33 2010 +0000 @@ -681,7 +681,7 @@ impl->Deinitialize = ALSA_Deinitialize; impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME: Add device enum! */ - return 1; /* !!! FIXME: return 2 once device enum is implemented. */ + return 1; /* this audio target is available. */ }