Beginning input refactor

This commit is contained in:
2025-09-03 11:57:48 -05:00
parent 059ccf41b6
commit 3f37b7cdb5
19 changed files with 320 additions and 137 deletions

View File

@@ -24,7 +24,6 @@ errorret_t assetAlphaImageLoad(asset_t *asset) {
errorThrow("Invalid alpha image height.");
}
printf("Alpha image dimensions: %ux%u\n", raw.width, raw.height);
zip_int64_t expecting = (
sizeof(raw.width) +
sizeof(raw.height) +

View File

@@ -29,7 +29,6 @@ errorret_t assetPaletteImageLoad(asset_t *asset) {
errorThrow("Invalid palette index.");
}
printf("Palette image dimensions: %ux%u\n", raw.width, raw.height);
zip_int64_t expecting = (
sizeof(raw.width) +
sizeof(raw.height) +