Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a performance issue when the server sends many messages
This is for instance the case at the beginning of a turn. The code was resizing every row for each recieved message, resulting in O(N^2) complexity. Change it to resize only the new row for O(N) complexity. Closes #615.
- Loading branch information