summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-02-24 01:20:50 +0100
committerGitHub <noreply@github.com>2018-02-24 01:20:50 +0100
commited0d1a440474d862bca9d05645f46fda8d4c43b4 (patch)
tree34c7229b46c05fed059617d23432471fc1ca352d /main
parent0712acec1c21b5683f4cfe292bb82f7d1d37cae0 (diff)
parent23ebae01dc7e3df9c842ca7d017f7b233837721d (diff)
Merge pull request #16957 from akien-mga/version-macros
Refactor version macros and fix related bugs
Diffstat (limited to 'main')
-rw-r--r--main/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp
index 4d7273b4e4..89a47d110f 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -175,7 +175,7 @@ static String get_full_version_string() {
String hash = String(VERSION_HASH);
if (hash.length() != 0)
hash = "." + hash.left(7);
- return String(VERSION_MKSTRING) + hash;
+ return String(VERSION_FULL_BUILD) + hash;
}
//#define DEBUG_INIT