mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
compiler warnings revealed that public PlaySoundSlavePrims properties were changing the wrong protected fields.
correcting these may resolve the sound problems seen recently on the mailing list, though not guaranteed.
This commit is contained in:
@@ -417,8 +417,8 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
private List<SceneObjectPart> m_PlaySoundSlavePrims = new List<SceneObjectPart>();
|
||||
public List<SceneObjectPart> PlaySoundSlavePrims
|
||||
{
|
||||
get { return m_LoopSoundSlavePrims; }
|
||||
set { m_LoopSoundSlavePrims = value; }
|
||||
get { return m_PlaySoundSlavePrims; }
|
||||
set { m_PlaySoundSlavePrims = value; }
|
||||
}
|
||||
|
||||
private SceneObjectPart m_LoopSoundMasterPrim = null;
|
||||
|
||||
Reference in New Issue
Block a user