summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorSpartan322 <Megacake1234@gmail.com>2024-11-08 12:56:25 -0500
committerSpartan322 <Megacake1234@gmail.com>2024-11-08 12:56:25 -0500
commit0660491ded738b961e98504057fce88a45009f76 (patch)
treecc02464de61fd47fb64962711406b403f7177651 /core
parent4e53dc3fa3d2d457e72fad1943ea09e06278ffcb (diff)
downloadredot-engine-0660491ded738b961e98504057fce88a45009f76.tar.gz
Fix `VERSION_FULL_CONFIG` excess dot on 0
Diffstat (limited to 'core')
-rw-r--r--core/version.h2
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