Commit fbed1f7a authored by Gurmail Bassi's avatar Gurmail Bassi Committed by Alexandre Julliard

joy.cpl: Fixed incorrect variable reference.

parent 03f519db
......@@ -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])
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment