Skip to content

Commit

Permalink
xrEngine: Fix conformance in For loop scope (#104).
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 15, 2016
1 parent ac741fe commit e063be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrEngine/Xr_input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ void CInput::KeyUpdate()
}
}

for (i = 0; i < COUNT_KB_BUTTONS; i++)
for (u32 i = 0; i < COUNT_KB_BUTTONS; i++)
if (KBState[i])
cbStack.back()->IR_OnKeyboardHold(i);
}
Expand Down

0 comments on commit e063be5

Please sign in to comment.