diff options
| author | Rémi Verschelde | 2017-11-19 21:18:01 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2017-11-20 00:51:14 +0100 |
| commit | 6947bed015c33706b9a441fd47cd84f0da99097c (patch) | |
| tree | f5069ae2bbdbc29f65366807ad5e217e3c293fa8 /core/engine.cpp | |
| parent | ecf80fbbbadaa782cbe81a6562916331c6762970 (diff) | |
| download | godot-6947bed015c33706b9a441fd47cd84f0da99097c.tar.gz godot-6947bed015c33706b9a441fd47cd84f0da99097c.tar.zst godot-6947bed015c33706b9a441fd47cd84f0da99097c.zip | |
Diffstat (limited to 'core/engine.cpp')
| -rw-r--r-- | core/engine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/engine.cpp b/core/engine.cpp index 31abcd62e..9a3c6248a 100644 --- a/core/engine.cpp +++ b/core/engine.cpp @@ -84,11 +84,11 @@ Dictionary Engine::get_version_info() const { #else dict["patch"] = 0; #endif - dict["status"] = _MKSTR(VERSION_STATUS); - dict["revision"] = _MKSTR(VERSION_REVISION); + dict["status"] = VERSION_STATUS; + dict["revision"] = VERSION_REVISION; dict["year"] = VERSION_YEAR; - String hash = String(VERSION_HASH); + String hash = VERSION_HASH; dict["hash"] = hash.length() == 0 ? String("unknown") : hash; String stringver = String(dict["major"]) + "." + String(dict["minor"]); |
