diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-11-08 19:03:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-08 19:03:10 +0000 |
commit | f3096f2bdda12854e864c611930fed7c4d65087b (patch) | |
tree | accd73424ca5d73da414825e3f710f34b6d7a8fe | |
parent | d943701980d75c0e25e258fd9ffe3715eb7a8d6f (diff) | |
parent | 0660491ded738b961e98504057fce88a45009f76 (diff) | |
download | redot-engine-f3096f2bdda12854e864c611930fed7c4d65087b.tar.gz |
Merge pull request #848 from Spartan322/4.3-fix/version-h
[4.3] Fix `VERSION_FULL_CONFIG` excess dot on 0
-rw-r--r-- | core/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/version.h b/core/version.h index 218796da1f..10d7f34fe4 100644 --- a/core/version.h +++ b/core/version.h @@ -68,7 +68,7 @@ // the status (beta, stable, etc.) and potential module-specific features (e.g. mono). // Example: "3.1.4.stable.mono" #if VERSION_STATUS_VERSION == 0 -#define VERSION_FULL_CONFIG VERSION_NUMBER "." VERSION_STATUS "." VERSION_MODULE_CONFIG +#define VERSION_FULL_CONFIG VERSION_NUMBER "." VERSION_STATUS VERSION_MODULE_CONFIG #else #define VERSION_FULL_CONFIG VERSION_NUMBER "." VERSION_STATUS "." _MKSTR(VERSION_STATUS_VERSION) VERSION_MODULE_CONFIG #endif |