#329: fix issue with mismatching sound volume

Sounds played after changing view position sometimes had incorrect volume
This commit is contained in:
ThorstenB
2011-08-27 12:00:17 +02:00
parent 36a8243f73
commit 40e177a02e

View File

@@ -118,7 +118,7 @@ public:
* @param _loop Define whether this sound should be played in a loop.
*/
void play( bool loop = false ) {
_playing = true; _loop = loop; _changed = true;
_playing = true; _loop = loop; _changed = true; _static_changed = true;
}
/**