mirror of
https://github.com/photonstorm/phaser
synced 2024-12-17 16:43:30 +00:00
Using manager.isLocked instead of removed checkTouchLocked method for resume method
This commit is contained in:
parent
fb775d4063
commit
5c0c89022e
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ var HTML5AudioSound = new Class({
|
|||
return true;
|
||||
},
|
||||
resume: function () {
|
||||
if (this.checkTouchLocked('method', 'resume')) {
|
||||
if (this.manager.isLocked(this, 'resume')) {
|
||||
return false;
|
||||
}
|
||||
if (this.startTime > 0) {
|
||||
|
|
Loading…
Reference in a new issue