You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
return integer for set_output_buffer_max_size() & set_input_buffer_max_size(int)
This commit is contained in:
@@ -1150,7 +1150,7 @@ ScriptDebuggerRemote::ScriptDebuggerRemote() {
|
||||
tcp_client = StreamPeerTCP::create_ref();
|
||||
packet_peer_stream = Ref<PacketPeerStream>(memnew(PacketPeerStream));
|
||||
packet_peer_stream->set_stream_peer(tcp_client);
|
||||
packet_peer_stream->set_input_buffer_max_size(pow(2, 20));
|
||||
packet_peer_stream->set_input_buffer_max_size(1024 * 1024 * 1);
|
||||
mutex = Mutex::create();
|
||||
locking = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user