joy.cpl: Fixed incorrect variable reference.

This commit is contained in:
Gurmail Bassi 2013-04-20 10:23:42 +01:00 committed by Alexandre Julliard
parent 03f519db3e
commit fbed1f7a80
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ static DWORD WINAPI input_thread(void *param)
axes_pos[2][1] = state.lRz;
/* Set pov values */
for (j = 0; i < sizeof(pov_val)/sizeof(pov_val[0]); j++)
for (j = 0; j < sizeof(pov_val)/sizeof(pov_val[0]); j++)
{
if (state.rgdwPOV[0] == pov_val[j])
{