mirror of
https://github.com/photonstorm/phaser
synced 2025-02-16 22:18:29 +00:00
Added missing parameter to some function calls
This commit is contained in:
parent
ab9fced253
commit
255eb85723
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ var ProcessQueue = new Class({
|
|||
add: function (item)
|
||||
{
|
||||
// Don't add if already active or pending, but DO add if active AND in the destroy list
|
||||
if (this.checkQueue && (this.isActive() && !this.isDestroying()) || this.isPending())
|
||||
if (this.checkQueue && (this.isActive(item) && !this.isDestroying(item)) || this.isPending(item))
|
||||
{
|
||||
return item;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue