We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 970a70f commit dbde28bCopy full SHA for dbde28b
Entities/SoundContainer.h
@@ -92,7 +92,7 @@ namespace RTE {
92
/// Copies the passed in SoundSet reference into the top level SoundSet of this SoundContainer, effectively making that the new top level SoundSet.
93
/// </summary>
94
/// <param name="newTopLevelSoundSet">A reference to the new top level SoundSet for this SoundContainer.</param>
95
- void SetTopLevelSoundSet(SoundSet &newTopLevelSoundSet) { m_TopLevelSoundSet = newTopLevelSoundSet; }
+ void SetTopLevelSoundSet(const SoundSet &newTopLevelSoundSet) { m_TopLevelSoundSet = newTopLevelSoundSet; m_SoundPropertiesUpToDate = false; }
96
97
/// <summary>
98
/// Gets a vector of hashes of the sounds selected to be played next in this SoundContainer.
0 commit comments