Skip to content

Commit e0b5e94

Browse files
committed
Fixed _destroy issue in Signal.
1 parent 86f972a commit e0b5e94

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core/Signal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ Phaser.Signal.prototype = {
247247
{
248248
if (this._bindings[n].context === context)
249249
{
250-
this._bindings[n].destroy();
250+
this._bindings[n]._destroy();
251251
this._bindings.splice(n, 1);
252252
}
253253
}

0 commit comments

Comments
 (0)