Fix typo. githash canonically doesn't start 0x

pull/2610/head
RichardTea 2019-08-21 16:07:51 +01:00
parent b8d4ae5a7c
commit 0f6e95f19d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
#if (GitVersion == 0) #if (GitVersion == 0)
#define VER_FILEVERSION_STR STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_PATCH) "." STR(VER_BUILD) #define VER_FILEVERSION_STR STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_PATCH) "." STR(VER_BUILD)
#else #else
#define VER_FILEVERSION_STR STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_PATCH) "." STR(VER_BUILD) " (Commit 0x@GIT_COMMIT_HASH@)" #define VER_FILEVERSION_STR STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_PATCH) "." STR(VER_BUILD) " (Commit @GIT_COMMIT_HASH@)"
#endif #endif
#ifdef NDEBUG #ifdef NDEBUG