Add compile time endianess

This commit is contained in:
2026-03-08 13:44:52 -05:00
parent e984b9f5d7
commit 2c3fdf7803
11 changed files with 270 additions and 190 deletions
+3 -1
View File
@@ -94,7 +94,9 @@ errorret_t assetLoad(const char_t *filename, void *output) {
void *data = memoryAllocate(fileSize);
if(!data) {
zip_fclose(file);
errorThrow("Failed to allocate memory for asset data of file: %s", filename);
errorThrow(
"Failed to allocate memory for asset data of file: %s", filename
);
}
// Read in the asset data.