summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge L. Albany <Megacake1234@gmail.com>2024-11-08 19:03:10 +0000
committerGitHub <noreply@github.com>2024-11-08 19:03:10 +0000
commitf3096f2bdda12854e864c611930fed7c4d65087b (patch)
treeaccd73424ca5d73da414825e3f710f34b6d7a8fe
parentd943701980d75c0e25e258fd9ffe3715eb7a8d6f (diff)
parent0660491ded738b961e98504057fce88a45009f76 (diff)
downloadredot-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.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