Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve sendMap() performance #392

Merged

Commits on Jun 17, 2019

  1. Improve sendMap() performance

    `sendMap()` was effectively being throttled heavily by vsync / FPS - every call to `sendMap()` (which is once per frame), it would only call `NETsendFile(...)` once per file, which sends at most `MAX_FILE_TRANSFER_PACKET`.
    
    This resulted in very slow map / mod transfer times (especially noticeable for larger maps / mods).
    past-due committed Jun 17, 2019
    Configuration menu
    Copy the full SHA
    6299535 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    166a517 View commit details
    Browse the repository at this point in the history