Clang-Tidy fixes (#6725)

This commit is contained in:
Pierre Wendling
2022-12-01 16:07:03 -05:00
committed by GitHub
parent c2ce44bead
commit 3c501b963d
184 changed files with 1312 additions and 1154 deletions

View File

@@ -100,7 +100,8 @@ init_system_cursor(const char *image[])
int i, row, col;
Uint8 data[4 * 32];
Uint8 mask[4 * 32];
int hot_x, hot_y;
int hot_x = 0;
int hot_y = 0;
i = -1;
for (row = 0; row < 32; ++row) {
@@ -125,7 +126,7 @@ init_system_cursor(const char *image[])
}
}
}
SDL_sscanf(image[4 + row], "%d,%d", &hot_x, &hot_y);
(void)SDL_sscanf(image[4 + row], "%d,%d", &hot_x, &hot_y);
return SDL_CreateCursor(data, mask, 32, 32, hot_x, hot_y);
}