1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-17 14:11:06 +00:00

Rename debug/debug_port to network/debug_port.

Expose it in editor settings.
This commit is contained in:
Fabio Alessandrelli
2017-05-12 19:27:16 +02:00
parent 7a4dc3be41
commit aa167fa04b
5 changed files with 7 additions and 6 deletions

View File

@@ -1651,7 +1651,7 @@ Error EditorExportPlatformAndroid::run(int p_device, int p_flags) {
args.push_back("--remove-all");
err = OS::get_singleton()->execute(adb, args, true, NULL, NULL, &rv);
int port = Globals::get_singleton()->get("debug/debug_port");
int port = Globals::get_singleton()->get("network/debug_port");
args.clear();
args.push_back("reverse");
args.push_back("tcp:" + itos(port));