diff options
Diffstat (limited to 'indra/newview/llfloaterabout.cpp')
-rw-r--r-- | indra/newview/llfloaterabout.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp index 9d3a108baa..a686353156 100644 --- a/indra/newview/llfloaterabout.cpp +++ b/indra/newview/llfloaterabout.cpp @@ -41,6 +41,7 @@ #include "llcurl.h" #include "llimagej2c.h" +#include "audioengine.h" #include "llviewertexteditor.h" #include "llviewercontrol.h" @@ -197,6 +198,11 @@ LLFloaterAbout::LLFloaterAbout() support.append( LLImageJ2C::getEngineInfo() ); support.append("\n"); + support.append("Audio Driver Version: "); + bool want_fullname = true; + support.append( gAudiop ? gAudiop->getDriverName(want_fullname) : "(none)" ); + support.append("\n"); + LLMediaManager *mgr = LLMediaManager::getInstance(); if (mgr) { |