aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/project_manager.cpp
diff options
context:
space:
mode:
authorZuBsPaCe2015-10-29 14:27:19 +0100
committerZuBsPaCe2015-10-29 15:57:55 +0100
commit3886ed08acce4f4c66ea6fd834f086b18994e9d1 (patch)
treeb9005b9ea49b17fc32b2dc8f525a0396850bf33f /tools/editor/project_manager.cpp
parentbd736e5af2ec5113c23fef58523f57a0b2e11fb2 (diff)
downloadgodot-3886ed08acce4f4c66ea6fd834f086b18994e9d1.tar.gz
godot-3886ed08acce4f4c66ea6fd834f086b18994e9d1.tar.zst
godot-3886ed08acce4f4c66ea6fd834f086b18994e9d1.zip
Fixes Visual Studio 2015 compile error C3688 (invalid literal suffix)
tools\editor\editor_node.cpp(3037): error C3688: invalid literal suffix 'VERSION_FULL_NAME'; literal operator or literal operator template 'operator ""VERSION_FULL_NAME' not found
Diffstat (limited to 'tools/editor/project_manager.cpp')
-rw-r--r--tools/editor/project_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/project_manager.cpp b/tools/editor/project_manager.cpp
index 9f4729143..8f8189cb7 100644
--- a/tools/editor/project_manager.cpp
+++ b/tools/editor/project_manager.cpp
@@ -144,7 +144,7 @@ class NewProjectDialog : public ConfirmationDialog {
fdialog->set_mode(FileDialog::MODE_OPEN_FILE);
fdialog->clear_filters();
- fdialog->add_filter("engine.cfg ; "_MKSTR(VERSION_NAME)" Project");
+ fdialog->add_filter("engine.cfg ; " _MKSTR(VERSION_NAME) " Project");
} else {
fdialog->set_mode(FileDialog::MODE_OPEN_DIR);
}
@@ -839,7 +839,7 @@ ProjectManager::ProjectManager() {
l->set_align(Label::ALIGN_CENTER);
vb->add_child(l);
l = memnew( Label );
- l->set_text("v"VERSION_MKSTRING);
+ l->set_text("v" VERSION_MKSTRING);
//l->add_font_override("font",get_font("bold","Fonts"));
l->set_align(Label::ALIGN_CENTER);
vb->add_child(l);