diff options
author | clayjohn <claynjohn@gmail.com> | 2022-12-14 12:08:50 -0800 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2022-12-14 12:08:50 -0800 |
commit | 4d818f395e211dcd95c9d56639e5d69b1c978890 (patch) | |
tree | 1e8e02ad6c352e841ff7241eec92dde31cc68f7a | |
parent | c22876e61c67614687e7f6dc79f98424d6df45a3 (diff) |
Remove comma in gl_compatibility message in new project creation menu
-rw-r--r-- | editor/project_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index a1b2aa3089..1b169076c6 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -446,7 +446,7 @@ private: String::utf8("\n• ") + TTR("Fast rendering of simple scenes.")); } else if (renderer_type == "gl_compatibility") { renderer_info->set_text( - String::utf8("• ") + TTR("Supports desktop, mobile, + web platforms.") + + String::utf8("• ") + TTR("Supports desktop, mobile + web platforms.") + String::utf8("\n• ") + TTR("Least advanced 3D graphics.") + String::utf8("\n• ") + TTR("Intended for low-end/older devices.") + String::utf8("\n• ") + TTR("Uses OpenGL 3 backend (OpenGL 3.3/ES 3.0/WebGL2).") + |