Skip to content

Commit

Permalink
xrEngine/Feel_Touch.cpp: Fixed out-of-loop variable usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine committed Nov 11, 2015
1 parent 6f21860 commit d0238ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrEngine/Feel_Touch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void Touch::feel_touch_update(Fvector& C, float R)
{
// check for deny
BOOL bDeny = FALSE;
for (dit = 0; dit < feel_touch_disable.size(); dit++)
for (u32 dit = 0; dit < feel_touch_disable.size(); dit++)
if (O == feel_touch_disable[dit].O) { bDeny = TRUE; break; }

// _new _
Expand Down

0 comments on commit d0238ab

Please sign in to comment.