mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 18:59:09 +00:00
Fix some noteworthy warnings (mostly hsBool->bool incompatibility) and missing headers
This commit is contained in:
@ -369,7 +369,7 @@ int plMsgCStringHelper::Poke(const char * str, hsStream* stream, const uint32_t
|
||||
{
|
||||
plMessage::plStrLen len = (str) ? strlen(str) : 0;
|
||||
stream->WriteLE(len);
|
||||
if (strlen)
|
||||
if (len)
|
||||
stream->Write(len,str);
|
||||
return stream->GetPosition();
|
||||
}
|
||||
|
Reference in New Issue
Block a user