Skip to content

Commit 8a999e9

Browse files
committed
Increase default readBufferSize
1 parent 7137cdb commit 8a999e9

File tree

1 file changed

+1
-1
lines changed
  • Unity-Twitch-Chat/Assets/Package/Runtime

1 file changed

+1
-1
lines changed

Unity-Twitch-Chat/Assets/Package/Runtime/IRC.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public partial class IRC : MonoBehaviour
4949
[Tooltip("The number of milliseconds between each time the read thread checks for new messages.")]
5050
[SerializeField] public int readInterval = 50;
5151
[Tooltip("The capacity of the read buffer. Smaller values consume less memory but require more cycles to retrieve data.")]
52-
[SerializeField] public int readBufferSize = 128;
52+
[SerializeField] public int readBufferSize = 256;
5353

5454
[Header("Chat write settings (write thread)")]
5555

0 commit comments

Comments
 (0)