mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Optimizations
This commit is contained in:
parent
3cd38b6003
commit
d909878624
@ -121,7 +121,7 @@ void CNetCon::UserInput(void)
|
||||
{
|
||||
std::string svSecondArg = svInput.substr(nPos + 1);
|
||||
std::string svFirstArg = svInput;
|
||||
svFirstArg = svFirstArg.erase(svFirstArg.find(" "));
|
||||
svFirstArg = svFirstArg.erase(svFirstArg.find(' '));
|
||||
|
||||
if (strcmp(svFirstArg.c_str(), "PASS") == 0) // Auth with RCON server.
|
||||
{
|
||||
|
@ -666,7 +666,7 @@ VPKEntryBlock_t::VPKEntryBlock_t(const vector<uint8_t> &vData, int64_t nOffset,
|
||||
size_t nDataSize = vData.size();
|
||||
int64_t nCurrentOffset = nOffset;
|
||||
|
||||
for (size_t i = 0; i < nEntryCount; i++) // Fragment data into 1MiB chunks
|
||||
for (size_t i = 0; i < nEntryCount; i++) // Fragment data into 1 MiB chunks
|
||||
{
|
||||
size_t nSize = std::min<uint64_t>(ENTRY_MAX_LEN, nDataSize);
|
||||
nDataSize -= nSize;
|
||||
|
Loading…
x
Reference in New Issue
Block a user