summaryrefslogtreecommitdiff
path: root/indra/llaudio
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2024-06-25 11:13:35 +0800
committerErik Kundiman <erik@megapahit.org>2024-06-25 13:05:11 +0800
commit7787532c76d7e8385765ff429d18ef0e730390ed (patch)
tree7e381bf71243c17d9cd9a5d0e2b2f38bff097e9d /indra/llaudio
parent217c2946d5c7663195351add4c7879bda64e581b (diff)
Squeeze in FMOD attribution
Diffstat (limited to 'indra/llaudio')
-rw-r--r--indra/llaudio/llaudioengine_fmodstudio.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llaudio/llaudioengine_fmodstudio.cpp b/indra/llaudio/llaudioengine_fmodstudio.cpp
index e7910b8b3c..b4e8407083 100644
--- a/indra/llaudio/llaudioengine_fmodstudio.cpp
+++ b/indra/llaudio/llaudioengine_fmodstudio.cpp
@@ -242,7 +242,7 @@ std::string LLAudioEngine_FMODSTUDIO::getDriverName(bool verbose)
U32 version;
if (!Check_FMOD_Error(mSystem->getVersion(&version), "FMOD::System::getVersion"))
{
- return llformat("FMOD Studio %1x.%02x.%02x by Firelight Technologies Pty Ltd.", version >> 16, version >> 8 & 0x000000FF, version & 0x000000FF);
+ return llformat("FMOD Studio %1x.%02x.%02x (Firelight Technologies Pty Ltd)", version >> 16, version >> 8 & 0x000000FF, version & 0x000000FF);
}
}
return "FMOD STUDIO";