Clear some warnings

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

15
level.c
View File

@ -13,20 +13,25 @@ void init_level(Game *g, Level *l, char *filepath) {
l->data_size = 0; l->data_size = 0;
do { do {
l->data[l->data_size++] = atoi(datum); 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; 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); datum = strtok_r(first_line, ",", &other_guy);
do { do {
l->data[l->data_size++] = (char)atoi(datum); 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; 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); UnloadFileText(file_text);
l->game = g; l->game = g;
} }