fix strings, includes, the usual

This commit is contained in:
Tropical
2026-03-22 02:28:46 -05:00
parent a30330f1d0
commit ce57edff9d
11 changed files with 321 additions and 27 deletions

View File

@@ -499,7 +499,7 @@ std::wstring Packet::readUtf(DataInputStream* dis,
{
short stringLength = dis->readShort();
if (stringLength > maxLength) {
wstringstream stream;
std::wstringstream stream;
stream << L"Received string length longer than maximum allowed ("
<< stringLength << " > " << maxLength << ")";
assert(false);