Optimizations

This commit is contained in:
Amos 2022-06-08 14:03:04 +02:00
parent 3cd38b6003
commit d909878624
2 changed files with 2 additions and 2 deletions

View File

@ -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.
{

View File

@ -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;