From 6cbebb29dc20f488a6e30d86b02c8ce78540538f Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 8 Jan 2023 21:56:38 +0100 Subject: [PATCH] mingw seems to doesnt like backslashes --- include/common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/common.h b/include/common.h index bb3781c4a..a97545996 100644 --- a/include/common.h +++ b/include/common.h @@ -24,8 +24,8 @@ #include #ifdef _WIN32 -#define ABOVE "..\\" -#define PATHSEP "\\" +#define ABOVE "../" +#define PATHSEP "/" #else #define ABOVE "../" #define PATHSEP "/" @@ -60,7 +60,7 @@ struct version_information_t { char clean; /* 1: Tree was clean, no local changes. 0: Tree was unclean. 2: Couldn't be determined */ char gitversion[50]; /* String with the git revision */ char buildtime[30]; /* string with the build time */ - char armsrc[10]; /* sha256sum of sha256sum of armsrc files */ + char armsrc[10]; /* sha256sum of sha256sum of armsrc && common_arm files */ } PACKED; // debug