Resolved Conflicts:
	indra/llcommon/aithreadsafe.h

Manually added patch had trailing space more.
This commit is contained in:
Aleric Inglewood
2011-05-22 22:42:24 +02:00
9 changed files with 26 additions and 11 deletions

View File

@@ -484,7 +484,7 @@ protected:
extern LLAudioEngine* gAudiop;
// <edit>
typedef struct
struct LLSoundHistoryItem
{
LLUUID mID;
LLVector3d mPosition;
@@ -500,7 +500,11 @@ typedef struct
bool mReviewed;
bool mReviewedCollision;
LLAudioSource* mAudioSource;
} LLSoundHistoryItem;
LLSoundHistoryItem() : mType(0), mPlaying(false), mIsTrigger(false),
mIsLooped(false), mReviewed(false), mReviewedCollision(false),
mTimeStarted(0), mTimeStopped(0), mAudioSource(0) {}
};
extern std::map<LLUUID, LLSoundHistoryItem> gSoundHistory;