diff options
author | Spartan322 <Megacake1234@gmail.com> | 2024-11-08 12:56:25 -0500 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-11-08 12:56:25 -0500 |
commit | 0660491ded738b961e98504057fce88a45009f76 (patch) | |
tree | cc02464de61fd47fb64962711406b403f7177651 /core | |
parent | 4e53dc3fa3d2d457e72fad1943ea09e06278ffcb (diff) | |
download | redot-engine-0660491ded738b961e98504057fce88a45009f76.tar.gz |
Fix `VERSION_FULL_CONFIG` excess dot on 0
Diffstat (limited to 'core')
-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 |