From 603c75134d7911c5c6a7af38da1327f3e713d583 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Tue, 27 Sep 2016 10:46:14 -0500 Subject: [PATCH] Version bump. :-) --- direct.c | 6 +++--- version.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/direct.c b/direct.c index dc9747b..6237ce2 100644 --- a/direct.c +++ b/direct.c @@ -371,11 +371,12 @@ int d_incbin(void) // the "-d" option. if ((fd = open(string[tok[1]], _OPEN_INC)) < 0) { - for (i = 0; nthpath("RMACPATH", i, buf1) != 0; i++) + for(i=0; nthpath("RMACPATH", i, buf1)!=0; i++) { fd = strlen(buf1); - if (fd > 0 && buf1[fd - 1] != SLASHCHAR) // Append path char if necessary + // Append path char if necessary + if (fd > 0 && buf1[fd - 1] != SLASHCHAR) strcat(buf1, SLASHSTRING); strcat(buf1, string[tok[1]]); @@ -389,7 +390,6 @@ int d_incbin(void) allright: - size = lseek(fd, 0L, SEEK_END); pos = lseek(fd, 0L, SEEK_SET); chcheck(size); diff --git a/version.h b/version.h index b8e5adf..f02916e 100644 --- a/version.h +++ b/version.h @@ -13,6 +13,6 @@ #define MAJOR 1 // Major version number #define MINOR 4 // Minor version number -#define PATCH 19 // Patch release number +#define PATCH 20 // Patch release number #endif // __VERSION_H__ -- 2.37.2