diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-01 13:58:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-01 13:58:57 +0200 |
commit | 98e7ec1e26bc218abba2de6caa2314334c6a833a (patch) | |
tree | a0d3cb6df73e716173a790a83d3bd1f41b78d097 | |
parent | 380bf04566f21d9da9c8894f9ea8c03001daae0f (diff) |
Revert "Add godot version in backtrace message"
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 16a0677bd0..3f84eca1d2 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -356,7 +356,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph ClassDB::register_class<Performance>(); engine->add_singleton(Engine::Singleton("Performance", performance)); - GLOBAL_DEF("debug/settings/crash_handler/message", "Godot version: " + get_full_version_string() + String("\nPlease include this when reporting the bug on https://github.com/godotengine/godot/issues")); + GLOBAL_DEF("debug/settings/crash_handler/message", String("Please include this when reporting the bug on https://github.com/godotengine/godot/issues")); MAIN_PRINT("Main: Parse CMDLine"); |