Clear some warnings

This commit is contained in:
Bill Rossi 2025-03-08 13:36:05 -05:00
parent 122e839ea8
commit 778af82724

13
level.c
View File

@ -13,18 +13,23 @@ void init_level(Game *g, Level *l, char *filepath) {
l->data_size = 0;
do {
l->data[l->data_size++] = atoi(datum);
} while (datum = strtok_r(NULL, ",", &other_guy));
} while ((datum = strtok_r(NULL, ",", &other_guy)));
l->width = l->data_size;
while (first_line = strtok_r(NULL, "\n", &line)) {
while ((first_line = strtok_r(NULL, "\n", &line))) {
datum = strtok_r(first_line, ",", &other_guy);
do {
l->data[l->data_size++] = (char)atoi(datum);
} while (datum = strtok_r(NULL, ",", &other_guy));
} while ((datum = strtok_r(NULL, ",", &other_guy)));
}
l->length = l->data_size / l->width;
printf("Loaded level from '%s': %dx%d = %d total bytes\n", filepath, l->length, l->width, l->data_size);
printf(
"Loaded level from '%s': %dx%d = %zd total bytes\n",
filepath,
l->length,
l->width,
l->data_size);
UnloadFileText(file_text);
l->game = g;