Skip to content

Commit d0238ab

Browse files
committed
xrEngine/Feel_Touch.cpp: Fixed out-of-loop variable usage.
1 parent 6f21860 commit d0238ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrEngine/Feel_Touch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void Touch::feel_touch_update(Fvector& C, float R)
5757
{
5858
// check for deny
5959
BOOL bDeny = FALSE;
60-
for (dit = 0; dit < feel_touch_disable.size(); dit++)
60+
for (u32 dit = 0; dit < feel_touch_disable.size(); dit++)
6161
if (O == feel_touch_disable[dit].O) { bDeny = TRUE; break; }
6262

6363
// _new _

0 commit comments

Comments
 (0)