diff options
Diffstat (limited to 'editor/debugger')
-rw-r--r-- | editor/debugger/debug_adapter/debug_adapter_parser.cpp | 2 | ||||
-rw-r--r-- | editor/debugger/script_editor_debugger.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editor/debugger/debug_adapter/debug_adapter_parser.cpp b/editor/debugger/debug_adapter/debug_adapter_parser.cpp index 2af629676a..8982564e33 100644 --- a/editor/debugger/debug_adapter/debug_adapter_parser.cpp +++ b/editor/debugger/debug_adapter/debug_adapter_parser.cpp @@ -304,7 +304,7 @@ Dictionary DebugAdapterParser::req_threads(const Dictionary &p_params) const { Array arr; DAP::Thread thread; - thread.id = 1; // Hardcoded because Godot only supports debugging one thread at the moment + thread.id = 1; // Hardcoded because Redot only supports debugging one thread at the moment thread.name = "Main"; arr.push_back(thread.to_json()); body["threads"] = arr; diff --git a/editor/debugger/script_editor_debugger.cpp b/editor/debugger/script_editor_debugger.cpp index cbe7910518..9bef064be5 100644 --- a/editor/debugger/script_editor_debugger.cpp +++ b/editor/debugger/script_editor_debugger.cpp @@ -1716,7 +1716,7 @@ void ScriptEditorDebugger::_item_menu_id_pressed(int p_option) { // Construct a GitHub repository URL and open it in the user's default web browser. // If the commit hash is available, use it for greater accuracy. Otherwise fall back to tagged release. String git_ref = String(VERSION_HASH).is_empty() ? String(VERSION_NUMBER) + "-stable" : String(VERSION_HASH); - OS::get_singleton()->shell_open(vformat("https://github.com/godotengine/godot/blob/%s/%s#L%d", + OS::get_singleton()->shell_open(vformat("https://github.com/Redot-Engine/redot-engine/blob/%s/%s#L%d", git_ref, file, line_number)); } break; case ACTION_DELETE_BREAKPOINT: { |