joy.cpl: Use the ARRAY_SIZE() macro.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2018-08-08 11:30:07 +02:00 committed by Alexandre Julliard
parent 284e661966
commit 3e610753a8
1 changed files with 1 additions and 1 deletions

View File

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