mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 22:48:34 +00:00
Merge pull request #3712 from cyantree/bugfix/endless-loop-in-TweenManager-getTweensOf
Fixed endless loop in `TweenManager.getTweensOf()`
This commit is contained in:
commit
df7651a892
1 changed files with 1 additions and 1 deletions
|
@ -474,7 +474,7 @@ var TweenManager = new Class({
|
|||
{
|
||||
tween = list[i];
|
||||
|
||||
for (var t = 0; t < target.length; i++)
|
||||
for (var t = 0; t < target.length; t++)
|
||||
{
|
||||
if (tween.hasTarget(target[t]))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue