mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 15:12:18 +00:00
Adjusted default marker duration value calculation
This commit is contained in:
parent
942fd09397
commit
af89faa83e
1 changed files with 1 additions and 1 deletions
|
@ -270,7 +270,7 @@ var BaseSound = new Class({
|
||||||
marker = Extend(true, {
|
marker = Extend(true, {
|
||||||
name: '',
|
name: '',
|
||||||
start: 0,
|
start: 0,
|
||||||
duration: this.totalDuration,
|
duration: this.totalDuration - (marker.start || 0),
|
||||||
config: {
|
config: {
|
||||||
mute: false,
|
mute: false,
|
||||||
volume: 1,
|
volume: 1,
|
||||||
|
|
Loading…
Reference in a new issue