diff options
Diffstat (limited to 'linden/indra/newview/llfloaterabout.cpp')
-rw-r--r-- | linden/indra/newview/llfloaterabout.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linden/indra/newview/llfloaterabout.cpp b/linden/indra/newview/llfloaterabout.cpp index a5ad97f..19b7653 100644 --- a/linden/indra/newview/llfloaterabout.cpp +++ b/linden/indra/newview/llfloaterabout.cpp | |||
@@ -41,6 +41,7 @@ | |||
41 | 41 | ||
42 | #include "llcurl.h" | 42 | #include "llcurl.h" |
43 | #include "llimagej2c.h" | 43 | #include "llimagej2c.h" |
44 | #include "audioengine.h" | ||
44 | 45 | ||
45 | #include "llviewertexteditor.h" | 46 | #include "llviewertexteditor.h" |
46 | #include "llviewercontrol.h" | 47 | #include "llviewercontrol.h" |
@@ -197,6 +198,11 @@ LLFloaterAbout::LLFloaterAbout() | |||
197 | support.append( LLImageJ2C::getEngineInfo() ); | 198 | support.append( LLImageJ2C::getEngineInfo() ); |
198 | support.append("\n"); | 199 | support.append("\n"); |
199 | 200 | ||
201 | support.append("Audio Driver Version: "); | ||
202 | bool want_fullname = true; | ||
203 | support.append( gAudiop ? gAudiop->getDriverName(want_fullname) : "(none)" ); | ||
204 | support.append("\n"); | ||
205 | |||
200 | LLMediaManager *mgr = LLMediaManager::getInstance(); | 206 | LLMediaManager *mgr = LLMediaManager::getInstance(); |
201 | if (mgr) | 207 | if (mgr) |
202 | { | 208 | { |