clean all warnings for vs-2019
This commit is contained in:
@@ -258,9 +258,10 @@ void TerragenImporter::InternReadFile( const std::string& pFile,
|
||||
}
|
||||
|
||||
// Get to the next chunk (4 byte aligned)
|
||||
unsigned dtt;
|
||||
if ((dtt = reader.GetCurrentPos() & 0x3))
|
||||
reader.IncPtr(4-dtt);
|
||||
unsigned dtt = reader.GetCurrentPos();
|
||||
if (dtt & 0x3) {
|
||||
reader.IncPtr(4 - dtt);
|
||||
}
|
||||
}
|
||||
|
||||
// Check whether we have a mesh now
|
||||
|
||||
Reference in New Issue
Block a user