Compare commits

..

No commits in common. "b2dc73148e0732d5c583bc439306cee1ef3d5f76" and "7b472cac4bf37f327b8100c4de5ca6baeb38f2d3" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View File

@ -76,7 +76,7 @@ if [[ $BUILD_TYPE == "debug" ]]; then
PCKR_OUT="pckr"
PAKRD_OUT="libpakrd.a"
else
mkdir -p dist
mkdir dist
cp ./include/pak.h dist
CFLAGS+="-O3 "
PCKR_OUT="dist/pckr"

View File

@ -229,9 +229,7 @@ void close_asset_pack(asset_pack_t **pack) {
free((*pack)->toc);
}
if ((*pack)->fp) {
fclose((*pack)->fp);
}
free(*pack);