Skip to content

Commit

Permalink
kip: fix logic around dumping both json and uncompressed
Browse files Browse the repository at this point in the history
  • Loading branch information
SciresM committed Jun 1, 2020
1 parent e27052e commit 53bacc1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion kip.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,9 @@ void kip1_save(kip1_ctx_t *ctx) {
}
cJSON_free(json);
fclose(f_json);
} else if (uncmp_path->valid == VALIDITY_VALID) {
}

if (uncmp_path->valid == VALIDITY_VALID) {
FILE *f_uncmp = os_fopen(uncmp_path->os_path, OS_MODE_WRITE);
if (f_uncmp == NULL) {
fprintf(stderr, "Failed to open %s!\n", uncmp_path->char_path);
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef HACTOOL_VERSION_H
#define HACTOOL_VERSION_H

#define HACTOOL_VERSION "1.3.3"
#define HACTOOL_VERSION "1.4.0"

#endif

0 comments on commit 53bacc1

Please sign in to comment.