()
| 836 | |
| 837 | // Update the parameters of the sound. |
| 838 | var setParams = function() { |
| 839 | sound._paused = false; |
| 840 | sound._seek = seek; |
| 841 | sound._start = start; |
| 842 | sound._stop = stop; |
| 843 | sound._loop = !!(sound._loop || self._sprite[sprite][2]); |
| 844 | }; |
| 845 | |
| 846 | // End the sound instantly if seek is at the end. |
| 847 | if (seek >= stop) { |
no outgoing calls
no test coverage detected