Remove "debug/remote_port" project setting (moved to editor)

Also updated default port from 6007 (X11) to 6096 (unspec)
This commit is contained in:
Fabio Alessandrelli
2017-07-22 14:22:45 +02:00
parent 63a9b02131
commit c3055b24d1
5 changed files with 9 additions and 7 deletions

View File

@@ -413,7 +413,7 @@ void EditorSettings::setup_network() {
String lip;
String hint;
String current = has("network/debug_host") ? get("network/debug_host") : "";
int port = has("network/debug_port") ? (int)get("network/debug_port") : 6007;
int port = has("network/debug_port") ? (int)get("network/debug_port") : 6096;
for (List<IP_Address>::Element *E = local_ip.front(); E; E = E->next()) {