File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -588,21 +588,21 @@ cc.Scheduler = cc.Class.extend(/** @lends cc.Scheduler# */{
588588 // updates with priority < 0
589589 for ( i = 0 ; i < this . _updatesNegList . length ; i ++ ) {
590590 if ( this . _updatesNegList [ i ] . markedForDeletion ) {
591- this . _removeUpdateFromHash ( tmpEntry ) ;
591+ this . _removeUpdateFromHash ( this . _updatesNegList [ i ] ) ;
592592 }
593593 }
594594
595595 // updates with priority == 0
596596 for ( i = 0 ; i < this . _updates0List . length ; i ++ ) {
597597 if ( this . _updates0List [ i ] . markedForDeletion ) {
598- this . _removeUpdateFromHash ( tmpEntry ) ;
598+ this . _removeUpdateFromHash ( this . _updates0List [ i ] ) ;
599599 }
600600 }
601601
602602 // updates with priority > 0
603603 for ( i = 0 ; i < this . _updatesPosList . length ; i ++ ) {
604604 if ( this . _updatesPosList [ i ] . markedForDeletion ) {
605- this . _removeUpdateFromHash ( tmpEntry ) ;
605+ this . _removeUpdateFromHash ( this . _updatesPosList [ i ] ) ;
606606 }
607607 }
608608
You can’t perform that action at this time.
0 commit comments