diff options
author | Jacek Antonelli | 2009-02-12 02:06:41 -0600 |
---|---|---|
committer | Jacek Antonelli | 2009-02-12 02:06:45 -0600 |
commit | 61f97b33f9850d21965d397b947a298c16ba576d (patch) | |
tree | a2edff0a7fbc83e2259eda952511b0fbdbea290b /linden/indra/newview/llfloaterabout.cpp | |
parent | Second Life viewer sources 1.22.7-RC (diff) | |
download | meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.zip meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.tar.gz meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.tar.bz2 meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.tar.xz |
Second Life viewer sources 1.22.8-RC
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 | { |