summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2019-10-13 09:06:53 -0400
committerGitHub <noreply@github.com>2019-10-13 09:06:53 -0400
commit6bffe8613e2f764a03f551ad61b360dab9395eec (patch)
treece08c9183b7e23ed4fc195d250d18762c00ad112 /tools
parent094b29edb50be48ee65dab0e8866ac65bba4e225 (diff)
parent66c416875a92a5a8987dca2e1102f76c4cce5e98 (diff)
Merge pull request #115 from PikalaxALT/player_pc
Player PC
Diffstat (limited to 'tools')
-rw-r--r--tools/br_ips/br_ips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/br_ips/br_ips.c b/tools/br_ips/br_ips.c
index 64c454a3e..440705cab 100644
--- a/tools/br_ips/br_ips.c
+++ b/tools/br_ips/br_ips.c
@@ -53,7 +53,7 @@ static int getline(char ** lineptr, size_t * n, FILE * stream) {
static void getIncbinsFromFile(hunk_t ** hunks, size_t * num, size_t * maxnum, const char * fname, char ** strbuf, size_t * buffersize) {
// Recursively find incbinned segments and encode them as hunks.
FILE * file = fopen(fname, "r");
- if (file == NULL) FATAL_ERROR("unable to open file \"%s\" for reading\n", fname);
+ if (file == NULL) return;
hunk_t * data = *hunks;
size_t nhunks = *num;
size_t maxnhunks = *maxnum;