diff options
author | Chris Robinson <[email protected]> | 2009-08-27 06:09:33 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-08-27 06:09:33 -0700 |
commit | bb121e68a618d1881a6e35c47938ce0650d07afb (patch) | |
tree | 620e024aa067cc96d36a91e2210beffc2115220e /Alc/solaris.c | |
parent | 1ec26fd789ddfcbabbeae003f286cc01062721c0 (diff) |
Rebuild device lists when retrieving them
Diffstat (limited to 'Alc/solaris.c')
-rw-r--r-- | Alc/solaris.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Alc/solaris.c b/Alc/solaris.c index 63f92bf4..e6421c2d 100644 --- a/Alc/solaris.c +++ b/Alc/solaris.c @@ -278,11 +278,16 @@ BackendFuncs solaris_funcs = { void alc_solaris_init(BackendFuncs *func_list) { *func_list = solaris_funcs; - - AppendDeviceList(solaris_device); - AppendAllDeviceList(solaris_device); } void alc_solaris_deinit(void) { } + +void alc_solaris_probe(ALCboolean capture) +{ + if(type == DEVICE_PROBE) + AppendDeviceList(solaris_device); + else if(type == ALL_DEVICE_PROBE) + AppendAllDeviceList(solaris_device); +} |