diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-12-29 11:21:39 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-01-14 22:25:35 +0200 |
commit | 5406b001ca8dd0b22cece26ebf4c15884d03add2 (patch) | |
tree | 5556e9077bb7e5ad1da5e3d2119825217dc4e1e5 /editor/editor_node.cpp | |
parent | 60d031777b2a922cba03210181c9ba7ad3a6f3ab (diff) |
Move remote debug buttons to a single menu.
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index b1b40eb52a..d1af28f8cf 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -5067,8 +5067,8 @@ bool EditorNode::ensure_main_scene(bool p_from_native) { return true; } -Error EditorNode::run_play_native(int p_idx, int p_platform) { - return run_native->run_native(p_idx, p_platform); +Error EditorNode::run_play_native(int p_id) { + return run_native->run_native(p_id); } void EditorNode::run_play() { |