Merge branch 'FMODStudio'

Conflicts:
	indra/cmake/PNG.cmake
	indra/newview/llnetmap.cpp
	indra/newview/llviewermessage.cpp



PARAMETERS: CLEAN
This commit is contained in:
Shyotl
2015-01-26 17:15:46 -06:00
224 changed files with 4964 additions and 4731 deletions

View File

@@ -120,10 +120,11 @@ LLPluginMessagePipe::~LLPluginMessagePipe()
bool LLPluginMessagePipe::addMessage(const std::string &message)
{
// queue the message for later output
LLMutexLock lock(&mOutputMutex);
//LLMutexLock lock(&mOutputMutex);
mOutputMutex.lock();
mOutput += message;
mOutput += MESSAGE_DELIMITER; // message separator
mOutputMutex.unlock();
return true;
}