mirror of
https://github.com/photonstorm/phaser
synced 2024-11-28 07:31:11 +00:00
Setting marker to null on removeMarker call
This commit is contained in:
parent
9d8afee78f
commit
c48f51de35
1 changed files with 2 additions and 1 deletions
|
@ -184,7 +184,8 @@ var BaseSound = new Class({
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
removeMarker: function (markerName) {
|
removeMarker: function (markerName) {
|
||||||
return false;
|
this.markers[markerName] = null;
|
||||||
|
return true;
|
||||||
},
|
},
|
||||||
play: function (markerName, config) {
|
play: function (markerName, config) {
|
||||||
if (markerName === void 0) { markerName = ''; }
|
if (markerName === void 0) { markerName = ''; }
|
||||||
|
|
Loading…
Reference in a new issue