diff options
| author | Rémi Verschelde | 2018-02-24 01:20:50 +0100 |
|---|---|---|
| committer | GitHub | 2018-02-24 01:20:50 +0100 |
| commit | ed0d1a440474d862bca9d05645f46fda8d4c43b4 (patch) | |
| tree | 34c7229b46c05fed059617d23432471fc1ca352d /editor/doc/doc_dump.cpp | |
| parent | 0712acec1c21b5683f4cfe292bb82f7d1d37cae0 (diff) | |
| parent | 23ebae01dc7e3df9c842ca7d017f7b233837721d (diff) | |
| download | godot-ed0d1a440474d862bca9d05645f46fda8d4c43b4.tar.gz godot-ed0d1a440474d862bca9d05645f46fda8d4c43b4.tar.zst godot-ed0d1a440474d862bca9d05645f46fda8d4c43b4.zip | |
Merge pull request #16957 from akien-mga/version-macros
Refactor version macros and fix related bugs
Diffstat (limited to 'editor/doc/doc_dump.cpp')
| -rw-r--r-- | editor/doc/doc_dump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/doc/doc_dump.cpp b/editor/doc/doc_dump.cpp index 905732a43..adbe23dcd 100644 --- a/editor/doc/doc_dump.cpp +++ b/editor/doc/doc_dump.cpp @@ -83,7 +83,7 @@ void DocDump::dump(const String &p_file) { FileAccess *f = FileAccess::open(p_file, FileAccess::WRITE); _write_string(f, 0, "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>"); - _write_string(f, 0, String("<doc version=\"") + itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + VERSION_STATUS + "\" name=\"Engine Types\">"); + _write_string(f, 0, String("<doc version=\"") + VERSION_NUMBER + "\" name=\"Engine Types\">"); while (class_list.size()) { |
