[Styling] Some minor styling fixes

This commit is contained in:
Antz 2021-11-12 17:36:26 +00:00 committed by Antz
parent caa2d98069
commit 0b30838d20
No known key found for this signature in database
GPG Key ID: 0DF907270598C85F
3 changed files with 24 additions and 19 deletions

View File

@ -1816,9 +1816,9 @@ namespace MaNGOS
do_helper(data_list, &str[0]);
}
else
{
do_helper(data_list, (char*)text);
}
{
do_helper(data_list, (char*)text);
}
}
private:
char* lineFromMessage(char*& pos)

View File

@ -364,6 +364,7 @@ enum eConfigBoolValues
CONFIG_BOOL_PLAYERBOT_COLLECT_OBJECTS,
CONFIG_BOOL_PLAYERBOT_SELL_TRASH,
#endif
// Warden
CONFIG_BOOL_WARDEN_WIN_ENABLED,
CONFIG_BOOL_WARDEN_OSX_ENABLED,
CONFIG_BOOL_GM_TICKET_OFFLINE_CLOSING,

View File

@ -384,9 +384,11 @@ namespace VMAP
result = false;
}
if (count)
if (result && fwrite(&triangles[0], sizeof(MeshTriangle), count, wf) != count)
{
result = false;
if (result && fwrite(&triangles[0], sizeof(MeshTriangle), count, wf) != count)
{
result = false;
}
}
// write mesh BIH
@ -410,9 +412,11 @@ namespace VMAP
result = false;
}
if (chunkSize)
if (result)
{
result = iLiquid->WriteToFile(wf);
if (result)
{
result = iLiquid->WriteToFile(wf);
}
}
return result;
@ -483,14 +487,14 @@ namespace VMAP
}
if (count)
{
if (result)
{
triangles.resize(count);
}
if (result && fread(&triangles[0], sizeof(MeshTriangle), count, rf) != count)
{
result = false;
}
if (result)
{
triangles.resize(count);
}
if (result && fread(&triangles[0], sizeof(MeshTriangle), count, rf) != count)
{
result = false;
}
}
// read mesh BIH
@ -729,10 +733,10 @@ namespace VMAP
count = groupModels.size();
if (count)
{
if (result && fwrite("GMOD", 1, 4, wf) != 4)
{
result = false;
}
if (result && fwrite("GMOD", 1, 4, wf) != 4)
{
result = false;
}
// chunkSize = sizeof(uint32)+ sizeof(GroupModel)*count;
// if (result && fwrite(&chunkSize, sizeof(uint32), 1, wf) != 1) result = false;
if (result && fwrite(&count, sizeof(uint32), 1, wf) != 1)