mirror of
https://github.com/scratchfoundation/Gestouch.git
synced 2024-11-27 01:35:40 -05:00
Minor type fix
This commit is contained in:
parent
7bacbf087b
commit
7bfb1fae36
1 changed files with 2 additions and 2 deletions
|
@ -274,7 +274,7 @@ package org.gestouch.core
|
|||
{
|
||||
var gesturesForTouch:Vector.<Gesture> = _gesturesForTouchMap[touch] as Vector.<Gesture>;
|
||||
var gesture:Gesture;
|
||||
var i:int = gesturesForTouch.length;
|
||||
var i:uint = gesturesForTouch.length;
|
||||
while (i-- > 0)
|
||||
{
|
||||
gesture = gesturesForTouch[i];
|
||||
|
@ -296,7 +296,7 @@ package org.gestouch.core
|
|||
{
|
||||
var gesturesForTouch:Vector.<Gesture> = _gesturesForTouchMap[touch] as Vector.<Gesture>;
|
||||
var gesture:Gesture;
|
||||
var i:int = gesturesForTouch.length;
|
||||
var i:uint = gesturesForTouch.length;
|
||||
while (i-- > 0)
|
||||
{
|
||||
gesture = gesturesForTouch[i];
|
||||
|
|
Loading…
Reference in a new issue