Skip to content

Commit e063be5

Browse files
author
nitrocaster
committed
xrEngine: Fix conformance in For loop scope (#104).
1 parent ac741fe commit e063be5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrEngine/Xr_input.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ void CInput::KeyUpdate()
261261
}
262262
}
263263

264-
for (i = 0; i < COUNT_KB_BUTTONS; i++)
264+
for (u32 i = 0; i < COUNT_KB_BUTTONS; i++)
265265
if (KBState[i])
266266
cbStack.back()->IR_OnKeyboardHold(i);
267267
}

0 commit comments

Comments
 (0)